美文网首页
Linux配置网络方法

Linux配置网络方法

作者: richardlee | 来源:发表于2022-06-23 15:12 被阅读0次

配置网络

临时生效

# 配置 ip、子网掩码
ifconfig eth0 10.130.6.180 netmask 255.255.0.0
# 配置网关
route add default gw 10.130.6.1

永久生效

vi /etc/sysconfig/network-scripts/ifcfg-eth0

# 加入下面三行
IPADDR=10.130.6.180
GATEWAY=10.130.6.1
NETMASK=255.255.0.0

# 重启网络
systemctl restart network

查看本机 ip,出现 ip 说明配置成功

ifconfig eth0
[root@localhost ~]# ifconfig eth0
eth0      Link encap:Ethernet  HWaddr FE:FC:FE:4D:5C:36  
          inet addr:10.130.6.180  Bcast:10.130.255.255  Mask:255.255.0.0
          inet6 addr: fe80::e21e:f543:a6de:be92/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4105467 errors:165000 dropped:0 overruns:0 frame:165000
          TX packets:24777 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:356007648 (339.5 MiB)  TX bytes:49129900 (46.8 MiB)

查看路由配置,出现网关说明配置成功

route -n
[root@localhost ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.130.6.1      0.0.0.0         UG    100    0        0 eth0
10.130.0.0      0.0.0.0         255.255.0.0     U     100    0        0 eth0
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
172.18.0.0      0.0.0.0         255.255.0.0     U     0      0        0 br-2e21f71c782e
172.19.0.0      0.0.0.0         255.255.0.0     U     0      0        0 br-1645c3e61b32

配置 DNS

echo "nameserver 8.8.8.8" >> /etc/resolv.conf

相关文章

  • linux网络管理-2

    Linux网络配置 Linux配置IP地址 DHCP服务器:自动分配IP地址 Linux配置IP地址的方法ifco...

  • 11月2日

    今天学习是的linux的网络配置 介绍了ip的分类 子网掩码 网关 DNS 在linux的网络配置方法 配置TFT...

  • Linux配置网络方法

    配置网络 临时生效 永久生效 查看本机 ip,出现 ip 说明配置成功 查看路由配置,出现网关说明配置成功 配置 DNS

  • Linux网络基础04

    Linux配置IP地址的方法 1.ifconfig命令临时配置IP地址 ifconfig命令:查看与配置网络状态命...

  • 配置Linux-centOS 7 网络

    两种方法配置linux网络: 一、图形化界面 #nmtui 修改网络参数 二、修改配置文件 #vi /etc/sy...

  • 慕课网《Linux网络管理》学习笔记

    1、配置linux网络的方法 1)ifconfig临时设置2)setup设置(RHEL才有)3)修改配置文件4)图...

  • linux debian 网络配置方法

    debian中包含两种配置ip的方式,一个是Networkmanger还有一种是interfere第一种:vi ...

  • Linux网络管理

    参考:* Linux中的网络管理——网络配置及命令 网络配置: ifconfig命令 网络配置文件:..网卡信...

  • Linux 网络配置

    Linux 网络配置 目录 网络配置 网络IP配置 大多数网络设置可以通过 /etc/network/interf...

  • 如何在linux搭建go和docker基本开发环境

    Linux配置 Linux使用静态地址 网络配置的配置文件在/etc/sysconfig/network-scri...

网友评论

      本文标题:Linux配置网络方法

      本文链接:https://www.haomeiwen.com/subject/mbfmvrtx.html