@Test
@Ignore
public void startClient() throws IOException {
Random r = new Random(Utils2.THE_ANSWER2);
Bindings b = new Bindings().addProtocol(StandardProtocolFamily.INET6);
Peer peer = new PeerBuilder(new Number160(r)).bindings(b).ports(port).start();
FutureBootstrap fb = peer.bootstrap().inetAddress(InetAddress.getByName(ipSuperPeer)).ports(port).start();
fb.awaitUninterruptibly();
System.out.println("Got it: " + fb.isSuccess());
}