更改 linux 中的子网掩码
Change subnetmask in linux
如何更改 eth0 接口的子网掩码?
sudo ifconfig netmask 255.255.254.0
我试过了,但没有效果
您丢失了 device
参数。
就像这样:
sudo ifconfig eth0 192.168.120.56 netmask 255.255.254.0
然后重启你的网络服务
systemctl restart network
如何更改 eth0 接口的子网掩码?
sudo ifconfig netmask 255.255.254.0
我试过了,但没有效果
您丢失了 device
参数。
就像这样:
sudo ifconfig eth0 192.168.120.56 netmask 255.255.254.0
然后重启你的网络服务
systemctl restart network