Linux命令行(文本模式)下配置網絡
添加時間:2018-12-23 16:12:31
添加:
思海網絡
除了通用的ifconfig外,對于Redhat/Fedora發行版,有專用的配置工具-netconfig。比較而言,netconfig可以設置IP獲取方式(靜態或者DHCP獲取)等。 netconfig --help
Usage: netconfig [OPTION...]
--bootproto=(dhcp|bootp|none) Boot protocol to use
--gateway=STRING Network gateway
--ip=STRING IP address
--nameserver=STRING Nameserver
--netmask=STRING Netmask
--hostname=STRING Hostname
--domain=STRING Domain name
-d, --device=STRING Network device
--nodns No DNS lookups
--hwaddr=STRING Ethernet hardware address
--deion=STRING Deion of the device Help options:
-?, --help Show this help message
--usage Display brief usage message
實例一:設置網卡的DHCP模式自動獲得IP [root@localhost ~]# netconfig -d eth0 --bootproto=dhcp
實例一:手動設置網卡的IP等 [root@localhost ~]# netconfig -d eth0 --ip=192.168.1.33 --netmask=255.255.255.0 --gateway=192.168.1.1
關鍵字:Linux、命令行、配置網絡
新文章:
- CentOS7下圖形配置網絡的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統后丟失windows啟動項
- CentOS單網卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網打印機IP講解
- CentOS7使用hostapd實現無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網絡重啟出錯
- 解決Centos7雙系統后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統有什么不同呢
- Centos 6.6默認iptable規則詳解