コマンドを使用してUbuntuボックスにpingを実行できます:(c2h2tttは/ etc / hostsにリストされています)
c2h2@c2h2crawler:~/ttt$ ping6 -I eth1 c2h2ttt
PING c2h2ttt(c2h2ttt) from fe80::21b:21ff:fe22:e865 eth1: 56 data bytes
64 bytes from c2h2ttt: icmp_seq=1 ttl=64 time=10.3 ms
64 bytes from c2h2ttt: icmp_seq=2 ttl=64 time=2.06 ms
64 bytes from c2h2ttt: icmp_seq=3 ttl=64 time=1.33 ms
そして、私が試しssh -6 c2h2ttt
てみるとそれが表示されます:
c2h2@c2h2crawler:~/ttt$ ssh -6 c2h2ttt
ssh: connect to host c2h2ttt port 22: Invalid argument
正しいコマンドは何ですか?
サーバー側の/ etc / ssh / sshd_configには次のものがあります。
ListenAddress ::
ListenAddress 0.0.0.0
私は、ポート22上でIPv4経由c2h2tttへのSSHすることができたとnetstat -lnt | grep :22
あります
root@c2h2think:~# netstat -lnt | grep :22
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp6 0 0 :::22 :::* LISTEN
ufwが使用され、ポート22のインバウンドトラフィックを許可します
root@c2h2think:~# ufw status
Status: active
To Action From
-- ------ ----
22 ALLOW Anywhere
そして、iptables設定:
root@c2h2think:~# ip6tables -L -v -n
Chain INPUT (policy DROP 55 packets, 10758 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT all lo * ::/0 ::/0
Chain FORWARD (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy DROP 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
0 0 ACCEPT all * lo ::/0 ::/0
sshd.confファイルを編集するか、sshdを再起動して、リッスンする新しいv6アドレスがあることを認識する必要がある場合があります。
netstat -lnt | grep :22
(22を含むリスニング数値tcpソケットを開く)の内容を確認してください。
あなたはやった ...右ip6tablesを持つオープンポート22を?
—
イグナシオバスケス-エイブラムス
1秒、ip6tablesをチェック
—
c2h2