linux常用命令_网络通信

※网络通信指令

1)write  向另外一个用户发信息,以Ctrl+D为结束 /usr/bin/write
    执行权限:All User write [用户名]
    $ write samlee(实时通讯,若不在线,则无效)

2)wall  向所有用户广播信息 /usr/bin/wall 执行权限:所有用户
    wall [message] [文件名]
    $ wall Happy New Year!

3)ping  测试网络连通性 /usr/sbin/ping 执行权限:root
    ping 选项 IP地址
    # ping 192.168.1.1
    # ping -c 3 192.168.1.103 (ping固定的次数)
    # ping -s 60000 192.168.1.103 (更改包的大小)

4)ifconfig   查看网络设置信息 /usr/sbin/ifconfig 执行权限:root
    ifconfig 选项[-a][网卡设备标识]
    -a 显示所有网卡信息
    # ifconfig -a
    # ifconfig eth0
    ifconfig eth0 192.168.1.200 ( 设置网卡IP,此次生效,重启还原)

※系统关机命令
1)shutdown 关机 /usr/sbin/shutdown 执行权限:root
    # shutdown -h now
2)reboot 重启系统 /usr/sbin/reboot 执行权限:root
    # reboot

你可能感兴趣的:(Linux常用命令)