码迷,mamicode.com
首页 > 系统相关 > 详细

linux 网卡相关命令

时间:2016-05-25 16:58:35      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

1. ifconfig  //查看网络相关信息

2. ifconfig eth0 192.168.1.103 netmask 255.255.255.0  //配置eth0的IP地址

3. route -n  //查询路由信息

4. route add default gw 192.168.1.1

 

使用 ifconfig eth0 192.168.1.103 netmask 255.255.255.0 配置IP后开发板重启,IP地址丢失需要重新配置。

vim /etc/network/interfaces

auto eth0
iface eth0 inet static
        address 192.168.1.41
        gateway 192.168.1.1
        netmask 255.255.255.0
        dns-nameserver 114.114.114.114
重启网卡
  ifdown eth0
  ifup eth0
eth0的IP地址则固定。

linux 网卡相关命令

标签:

原文地址:http://www.cnblogs.com/emlslxl/p/5527492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!