代理加盟
服务条款
隐私政策
行业新闻
Linux网络配置方法简介。
# 使用ifconfigifconfig eth0 192.168.1.3 netmask 255.255.255.0# 使用用ip命令增加一个IPip addr add 192.168.1.4/24 dev eth0# 使用ifconfig增加网卡别名ifconfig eth0:0 192.168.1.10
这样配置的IP
地址重启机器后会丢失,所以一般应该把网络配置写入文件中。如Ubuntu
可以将网卡配置写入/etc/network/interfaces
(Redhat
和CentOS
则需要写入/etc/sysconfig/network-scripts/ifcfg-eth0
中):
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.3 netmask 255.255.255.0 gateway 192.168.1.1 auto eth1 iface eth1 inet dhcp
# 使用route命令route add default gw 192.168.1.1# 也可以使用ip命令ip route add default via 192.168.1.1
# 安装并加载内核模块apt-get install vlan modprobe 8021q# 添加vlanvconfig add eth0 100 ifconfig eth0.100 192.168.100.2 netmask 255.255.255.0# 删除vlanvconfig rem eth0.100
# 改变speedethtool -s eth0 speed 1000 duplex full# 关闭GROethtool -K eth0 gro off# 开启网卡多队列ethtool -L eth0 combined 4# 开启vxlan offloadethtool -K ens2f0 rx-checksum on ethtool -K ens2f0 tx-udp_tnl-segmentation on# 查询网卡统计ethtool -S eth0