标签:
ifconfig命令主要用于配置或显示网络设备(Network Interface Controller 网卡、网络适配器)。使用ifconfig命令还可以指定网络接口地址(ip地址)。
语法:
ifconfig [-a | -s | -v] [网络设备] [down | up |[-]allmulit | [-]arp | [-]promisc] [add <地址>] [del <地址>] [hw<网络设备类型> <硬件地址>] [io_addr <I/O地址>] [irq <IRQ地址>] [media <网络介质类型>] [mem_start <内存地址>] [metric <数目>] [mtu <字节>] [netmask <子网掩码>] [tunnel <地址>] [[-]broadcast <地址>] [[-]pointtopoint <地址>] [IP地址]
$ ifconfig eth0 192.168.1.105 netmask 255.255.255.0 broadcast 192.168.1.255 ## 设置eth0 网络接口IP为 192.168.1.105 。 子网掩码为 255.255.255.0 广播地址为 192.168.1.255 $ ifconfig ehto down ## 禁用 eth0 网络接口 $ ifconfig etho up ## 启用 eth0 网络接口 $ ifconfig eth0 add addr fe80::20c:29ff:fedb:ace6/64 ## 添加一个IPv6 地址
标签:
原文地址:http://blog.csdn.net/u011641885/article/details/45826793