摘要:
ifconfig# 查看当前系统网卡信息route# 查看当前路由信息sudo ifconfig eth0 down# 停用网卡eth0sudo ifconfig eth0 up# 启用网卡eth0sudo ifocnfig eth0 192.168.0.88 netmask 255.255.255.0# 将网卡eth0 IP地址和子网掩码分别修改为192.168.0.88 和 255.255.255.0route 或 netstat -r# 查看路由信息sudo route add default gw 192.168.0.1 eth0# 给网卡eth0 设置默认网关 192.168.0.1 阅读全文