linux中的网络配置命令有:1.ifconfig命令,用于显示或设置网络设备;2.ip命令,用于执行网络管理任务;3.route命令,用于显示和操作IP路由表;
linux中的网络配置命令有以下几种
ifconfig命令
linux中ifconfig命令的作用是用于显示或设置网络设备。
ifconfig命令使用方法:
# ifconfig [网络设备][down up -allmulti -arp -promisc][add<地址>][del<地址>][<hw<网络设备类型><硬件地址>][io_addr<I/O地址>][irq<IRQ地址>][media<网络媒介类型>][mem_start<内存地址>][metric<数目>][mtu<字节>][netmask<子网掩码>][tunnel<地址>][-broadcast<地址>][-pointopoint<地址>][IP地址]
ip命令
linux中ip命令的作用是用于执行网络管理任务。
ip命令使用方法:
例:设置IP地址# sudo ip addr add 192.168.0.1/24 dev wlan0
例:更改默认路由
# sudo ip route add default via 192.168.0.196
route命令
linux中route命令的作用是用于显示和操作IP路由表。
route命令使用方法:
例:添加主机路由# route add –host 192.168.1.11 dev eth0
例:添加网络路由
# route add –net 192.168.1.11 netmask 255.255.255.0 eth0
例:添加默认网关
# route add default gw 192.168.2.1