मैं कमांड के माध्यम से अपने उबंटू बॉक्स को पिंग करने में सक्षम हूं: (जहां 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
मैं 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
netstat -lnt | grep :22
(ओपन श्रवण संख्यात्मक tcp सॉकेट | युक्त: 22) क्या कहते हैं।