Centos 7禁用关闭IPv6的方法
1.在/etc/sysctl.conf中添加此规则:
net.ipv6.conf.all.disable_ipv6 = 1
2.在/etc/sysconfig/network中添加此规则:
NETWORKING_IPV6 = no
3.在/etc/sysconfig/network-scripts/ifcfg-ethX中添加此规则:
IPV6INIT = no
4.关闭防火墙的开机自启动服务:
systemctl disable ip6tables.service
5.重新加载sysctl配置或者重启服务器
#sysctl -p
or
#reboot
注:
在/etc/sysconfig/network-scripts/ifcfg-ethX中ethX为网卡名
示例:
vi /etc/sysctl.conf
vi /etc/sysconfig/network
vi /etc/sysconfig/network-scripts/ifcfg-eth0
建议阅读
- Windows netstat命令查看服务及监听端口进程(查看: 10049)
- 问题解决:WSL的OracleLinux_7_9报错Failed to get D-Bus connection: Operation not permitted解决办法(查看: 201)
- SSH 登录时出现如下错误:Disconnected:No supported authentication methods available(查看: 64999)
- shell中too many arguments错误的解决方法(查看: 1442)
- windows server 2019 安装linux子系统(查看: 1357)