linux常用命令-2网络相关命令

Posted hxxhdaily

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux常用命令-2网络相关命令相关的知识,希望对你有一定的参考价值。

1.ip  [选项]  操作对象link|addr|route...

  ip addr show #显示网卡IP信息

2.修改IP配置

  1)     root权限

  2)     cd /etc/sysconfig/network-scripts/ #进入网络配置文件目录

  3)     ls #查看目录下所有文件

  4)     vi命令打开ifcfg-enp4s0(具体看实际文件名)文件,输入命令i手动添加ipaddr0=Ip地址,GATWAY0=网关、DNS1=DNS,然后Esc,:wq命令保存退出。

  5)     service network restart #设置好IP重启网络

3.ping #与windows的dos命令相同

4.telnet

  1)     rpm –qa telnet-server #检查有没有安装telnet服务

    rpm –qa telnet #检查有没有安装telnet服务

    rpm –qa xinetd #检查有没有安装xinetd

    安装会输出相应版本信息

  2)     yum安装

    yum install telnet-server

    yum install telnet

    yum install xinetd

  3)     将服务设置为开机启动

    systemctl enable telnet.socket

    systemctl enable xinetd.service

  4)     启动服务

    systemctl start telnet.socket

    systemctl start xinetd

  5)     检查服务状态

    systemctl status telnet.socket

    systemctl status xinetd

5.防火墙firewall

  1)    systemctl status firewalld.service #查看防火墙是否开启

  2)    systemctl stop firewalld.service #关闭防火墙

  3)    systemctl start firewalld.service #开启防火墙

  4)    systemctl restart firewalld.service #重启防火墙

  5)    firewall-cmd --permanent --zone=public --list-services #查看服务

  6)    firewall-cmd --permanent --zone=public --list-ports #查看防火墙开放端口

  7)    firewall-cmd --permanent --zone=public --add-port=80/tcp #永久开启端口

  8)    firewall-cmd --zone=public --add-port=80/tcp #临时开启端口

  9)    firewall-cmd --query-service ftp #查看ftp服务是否支持,返回yes或者no

  10) firewall-cmd --add-service=ftp #临时开放ftp服务

  11) firewall-cmd --add-service=ftp –permanent #永久开放ftp服务

  12) firewall-cmd --remove-service=ftp –permanent #永久移除ftp服务

6.nmtui #可视配置IP地址

以上是关于linux常用命令-2网络相关命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux常用命令合集

Linux常用命令

Linux常用网络相关命令

Linux基础——常用的Linux网络命令

Linux 常用命令安装

Linux常用网络命令总结