আমি কমান্ডের মাধ্যমে আমার উবুন্টু বাক্সটি পিং করতে সক্ষম: (যেখানে c2h2ttt / etc / হোস্টে তালিকাভুক্ত)
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
আমি IPv4 মাধ্যমে c2h2ttt করার SSH পোর্ট 22. উপর পেরেছিলেন এবং 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
netstat -lnt | grep :22
(সাংখ্যিক TCP সকেট শোনা খুলুন | ধারণকারী: 22) বলেছেন।