Help with ping6


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Help with ping6
# 8  
Old 11-24-2016
Code:
/home/server1# systctl net.ipv6.conf.{all,default,lo}.disable_ipv6
bash: systctl: command not found


Last edited by Scrutinizer; 11-25-2016 at 02:02 AM.. Reason: code tags
# 9  
Old 11-24-2016
Quote:
Originally Posted by Meow613
/home/server1# systctl net.ipv6.conf.{all,default,lo}.disable_ipv6
bash: systctl: command not found
Apologies. I misspelled the command. Please, remove the extra t after the second s. It should be:
Code:
sysctl net.ipv6.conf.{all,default,lo}.disable_ipv6

# 10  
Old 11-25-2016
Thanks.
Here is the output:
Code:
root@server1:/home/server1# sysctl net.ipv6.conf.{all,default,lo}.disable_ipv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

# 11  
Old 11-25-2016
Quote:
Originally Posted by Meow613
Thanks.
Here is the output:
Code:
root@server1:/home/server1# sysctl net.ipv6.conf.{all,default,lo}.disable_ipv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

Your ip version six has been disabled in the system you are using.
To enabled it again, find those entries in the file /etc/sysctl.conf and change the 1 to a 0. Then, issue the command sysctl -p
After that try ping6 ::1

Last edited by Aia; 11-26-2016 at 01:25 AM..
# 12  
Old 12-11-2016
Aia -

Sorry for the delay -

Here is the reply:

Code:
root@server1:/home/server1# ping6 ::1
connect: Network is unreachable

---------- Post updated at 11:34 PM ---------- Previous update was at 11:21 PM ----------

Aia -

Sorry.

Did not make the proper edits.

Here it is again:
Code:
PING ::1(::1) 56 data bytes
64 bytes from ::1: icmp_seq=1 ttl=64 time=0.040 ms
64 bytes from ::1: icmp_seq=2 ttl=64 time=0.070 ms
64 bytes from ::1: icmp_seq=3 ttl=64 time=0.085 ms
64 bytes from ::1: icmp_seq=4 ttl=64 time=0.077 ms
64 bytes from ::1: icmp_seq=5 ttl=64 time=0.086 ms
^C
--- ::1 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 3999ms
rtt min/avg/max/mdev = 0.040/0.071/0.086/0.019 ms

root@server1:/home/server1# ping6  ::ffff:2f15:9a92
PING ::ffff:2f15:9a92(::ffff:47.21.154.146) 56 data bytes
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable

Code:
::ffff:2f15:9a92

is my iIPv6 address.


meow613

Last edited by Meow613; 12-11-2016 at 02:11 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Help with ping6

Please help me with the inability to use ping6 root@server1:/home/server1# ifconfig eth0 Link encap:Ethernet HWaddr 00:23:ae:27:b9:ec UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0... (1 Reply)
Discussion started by: Meow613
1 Replies
Login or Register to Ask a Question