51、linux shell命令,route,ifconfig

简介: 3、route 1)route [-nee] route add [-net|-host] [网域或主机] netmask [mask] [gw|dev] route del [-net|-host] [网域或主机] netmask [mask] [gw|dev] 2)...

3、route

1)route [-nee]

route add [-net|-host] [网域或主机] netmask [mask] [gw|dev]

route del [-net|-host] [网域或主机] netmask [mask] [gw|dev]

2)option

-n:不使用协议或主机名称,直接使用IPport number

-ee:使用更详细的信息来显示

增加 (add) 与删除 (del) 路由的相关参数:

-net:表示后面接的路由为一个网域;

-host:表示后面接的为连接到单部主机的路由;

netmask:子网掩码

gw:gateway 的简写;

dev指定由那一块网卡连线出去,后面接 eth0

关于结果中Flags的说明,见【1】。

3) 示例

1)route del -net 169.254.0.0 netmask 255.255.0.0 dev eth0 //路由表中各项要写全

2)route add -net 192.168.100.0 netmask 255.255.255.0 dev eth0

3)route add default gw 192.168.1.250

/etc/init.d/network restart //刚刚的设定全部失效,以ifcfg-ethX 的设定为主

default = 0.0.0.0/0.0.0.0

4、ifconfig,ifup,ifdown

1) 说明

ifconfig {interface} {up|down}

ifconfig interface address {options}

    可以设置虚拟网络接口:指的是为一个网络接口指定多个IP地址,虚拟接口是这样的 eth0:0 eth0:1eth0:2 ... .. eth1N。比如,我们可以用不同的IP地址来架运行多个httpd服务器。

2)option

interface:网卡号,包括 eth0, eth1, ppp0

options::

up, down:启动 (up) 或关闭 (down) 该网络界面(不涉及任何参数)

mtu:可以设定不同的 MTU 数值,例如 mtu 1500 (单位为 byte)

netmask:子网掩码

broadcast:广播位址

3)示例

ifconfig eth0 192.168.100.100 //设置eth0ip

ifconfig eth0 192.168.100.100 netmask 255.255.255.128 mtu 8000

ifconfig eth0:0 192.168.50.50 // eth0:0,在该实体网卡上,再模拟一个网络地址,亦即是在一张网络卡上面设定多个 IP

ifconfig eth0:0 down

/etc/init.d/network restart //刚刚设定全部失效,会以ifcfg-ethX 的设定为主

/etc/sysconfig/network/config

ifconfig eth1:0 192.168.1.250 hw ether 00:11:00:00:11:44 netmask 255.255.255.0 broadcast 192.168.1.255 up //hw后面是网络接口类型,ether表示以太网

4)ifup,ifdown是两个脚本,会直接到 /etc/sysconfig/network-scripts 目录下搜寻对应的设定档,通过其相应的脚本来启动关闭。

ifup | ifdown  {interface}

5、ip命令【1

参考

1】 对命令进行了一些讲解

http://linux.vbird.org/linux_server/0140networkcommand.php#netstat

2】 对tcpstate讲解的较好,如TIME_WAITThe socket is waiting after close to handle packets still in the network.

http://linux.die.net/man/8/netstat

3http://www.linuxso.com/command/netstat.html

4traceroute的用法示例

http://blog.sina.com.cn/s/blog_4895289e010009bn.html

对来龙去脉讲的好

http://blog.chinaunix.net/space.php?uid=20172731&do=blog&cuid=159630

5ifconfig用法

http://www.cublog.cn/u2/78880/showart_1879201.html

目录
相关文章
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
130 8
|
2月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
506 6
|
2月前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
102 3
|
2月前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
84 2
|
27天前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
53 14
Linux 10 个“who”命令示例
|
6天前
|
Linux
linux查看目录下的文件夹命令,find查找某个目录,但是不包括这个目录本身?
通过本文的介绍,您应该对如何在 Linux 系统中查看目录下的文件夹以及使用 `find` 命令查找特定目录内容并排除该目录本身有了清晰的理解。掌握这些命令和技巧,可以大大提高日常文件管理和查找操作的效率。 在实际应用中,灵活使用这些命令和参数,可以帮助您快速定位和管理文件和目录,满足各种复杂的文件系统操作需求。
28 8
|
16天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
100 20
|
16天前
|
网络协议 Linux 应用服务中间件
kali的常用命令汇总Linux
kali的常用命令汇总linux
43 7
|
2月前
|
Linux 数据库
Linux中第一次使用locate命令报错?????
在Linux CentOS7系统中,使用`locate`命令时出现“command not found”错误,原因是缺少`mlocate`包。解决方法是通过`yum install mlocate -y`或`apt-get install mlocate`安装该包,并执行`updatedb`更新数据库以解决后续的“can not stat”错误。
35 9
|
2月前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解