博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux 配置网卡
阅读量:5038 次
发布时间:2019-06-12

本文共 642 字,大约阅读时间需要 2 分钟。

if config 配置网卡

 

ifconfig :显示所有网卡信息

ifconfig eth0 : 查看网卡eth0的信息

ifconfig eth0 down :禁用eth0

if config eth0 up : 激活eth0

if config eth0 192.168.1.101 : 配置网卡eth0的IP地址

 

网络设置:

sudo route add default gw 192.168.1.1  : 添加网关

/etc/network/interfaces restart  : 重启网络服务

 

 

配置DNS:

 

sudo vi /etc/resolv.conf :

nameserver 202.96.134.133

nameserver 202.96.128.68

nameserver 202.96.128.68

 

配置静态IP:

sudo vi /etc/network/interfaces :

iface eth0 inet static  # 配置eth0接口为静态地址

address 192.168.1.10

gateway 192.168.1.254

netmask 255.255.255.0

network 192.168.1.0

broadcast 192.168.1.255

抓包:

tcpdump -i wlan0

返回上一次的路径 :

cd -

 

 

 

 

转载于:https://www.cnblogs.com/cjj-zyj/p/9914935.html

你可能感兴趣的文章
photoplus
查看>>
Python 拓展之推导式
查看>>
[Leetcode] DP-- 474. Ones and Zeroes
查看>>
80X86寄存器详解<转载>
查看>>
c# aop讲解
查看>>
iterable与iterator
查看>>
返回顶部(动画)
查看>>
webpack+react+antd 单页面应用实例
查看>>
Confluence 6 SQL Server 数据库驱动修改
查看>>
Confluence 6 通过 SSL 或 HTTPS 运行 - 备注和问题解决
查看>>
【47.76%】【Round #380B】Spotlights
查看>>
Git(使用码云)
查看>>
分享Java web 开发必游之路
查看>>
IIS初始化(预加载),解决第一次访问慢,程序池被回收问题(转载)
查看>>
Bean的Scope
查看>>
【BZOJ】3142: [Hnoi2013]数列
查看>>
http初探
查看>>
elasticsearch的安装
查看>>
__next__()
查看>>
爬取:中国大学排名
查看>>