在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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地址] 参数: up 启动指定网络设备/网卡 例: 复制代码 代码如下:[root@localhost~]#ifconfig#处于激活状态的网络接口 [root@localhost~]#ifconfig-a#所有配置的网络接口,不论其是否激活 [root@localhost~]#ifconfig eth0#显示eth0的网卡信息 [root@localhost~]#ifconfig eth0 down#关闭eth0网卡 [root@localhost~]#ifconfig eth0 up#开启eth0网卡 [root@localhost~]#ifconfig eth0 add 33ffe:3240:800:1005::2/64#为网卡添加IPv6地址 [root@localhost~]#ifconfig eth0 del 33ffe:3240:800:1005::2/64#为网卡删除IPv6地址 [root@localhost~]#ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE#修改MAC地址 [root@localhost~]#ifconfig eth0 192.168.1.56#给eth0网卡配置IP地址 [root@localhost~]#ifconfig eth0 192.168.1.56 netmask 255.255.255.0#给eth0网卡配置IP地址,并加上子掩码 [root@localhost~]#ifconfig eth0 192.168.1.56 netmask 255.255.255.0 broadcast 192.168.1.255#给eth0网卡配置IP地址,加上子掩码,加上个广播地址 [root@localhost~]#ifconfig eth0 mtu 1500#设置能通过的最大数据包大小为1500 bytes [root@localhost~]#ifconfig eth0 arp#开启arp功能 [root@localhost~]#ifconfig eth0-arp#关闭arp功能 route 选项 OPTIONS -v 例: 复制代码 代码如下:[root@linux ~]# route #显示当前路由 Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.0.0 * 255.255.255.0 U 0 0 0 eth0 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 [root@linux ~]# route del default gw 192.168.0.1 #删除默认网关 [root@linux ~]# route add default gw 192.168.0.1 #添加默认网关 [root@linux ~]# route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0 #增加一条路由 [root@linux ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.0.0 * 255.255.255.0 U 0 0 0 eth0 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 [root@linux ~]# route add -net 224.0.0.0 netmask 240.0.0.0 reject #屏蔽一条路由 [root@linux ~]# route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 192.168.0.0 * 255.255.255.0 U 0 0 0 eth0 224.0.0.0 * 240.0.0.0 U 0 0 0 eth0 default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 [root@linux ~]# route add -host 192.168.0.2 gw 192.168.0.1 #所有去往192.168.0.2主机的数据包发往网关地址192.168.0.1 |
请发表评论