NX 7.5 License Server 不能在运行有IPV6协议的Linux system上运行, 如何解决? 问题/症状 --------------- NX 7.5 License Server 不能在运行有IPV6协议的Linux system上运行, 如何解决? 解决方法 ------------------- 先检查一下当前的系统是否有ipv6正在运行, 用root用户运行下面的命令: # ifconfig -a eth0 Link encap:Ethernet HWaddr 00:0F:1F:89:8F:D5 inet addr:192.168.1.100 Bcast:140.171.243.255 Mask:255.255.254.0 inet6 addr: fe80::20f:1fff:fe89:8fd5/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:33386388 errors:0 dropped:0 overruns:0 frame:0 TX packets:2947979 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:2211978470 (2109.5 Mb) TX bytes:380978644 (363.3 Mb) Base address:0xdf40 Memory:feae0000-feb00000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:895 errors:0 dropped:0 overruns:0 frame:0 TX packets:895 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:76527 (74.7 Kb) TX bytes:76527 (74.7 Kb) 如果你看到上面的运行的结果中有inet6, 那么您的机器中就有ipv6在运行. 要完全禁用IPV6, 用root用户运行下面的命令: # echo "alias net-pf-10 off" >> /etc/modprobe.conf.local # echo "alias ipv6 off" >> /etc/modprobe.conf.local 重新启动机器. 重启机器后,再次运行ifconfig 命令验证含有inet6 的行已经被删除了. |