網路相關配置

2022-07-22 07:15:13 字數 1888 閱讀 5752

1.臨時配置網路(ip,閘道器,dns)+永久配置

設定ip

#ifconfig en016777736

192.168.2.3

設定dns

#vim /etc/resolv.conf

nameserver 202.106.0.20

設定閘道器

#route adddefaultgw 192.168.2.35

永久配置

#cat /etc/sysconfig/network-scripts/ifcfg-eno16777736

hwaddr="00:0c:29:ef:92:5d"

type="ethernet"

bootproto="dhcp"*****》把dhcp改成static

defroute="yes"

peerdns="yes"

peerroutes="yes"

ipv4_failure_fatal="no"

ipv6init="yes"

ipv6_autoconf="yes"

ipv6_defroute="yes"

ipv6_peerdns="yes"

ipv6_peerroutes="yes"

ipv6_failure_fatal="no"

name="eno16777736"

uuid="545e7024-c143-4ece-8586-cb56cef34026"

onboot="yes"

# cat /etc/resolv.conf 

nameserver 192.168.22.254

2.為集群內的機器設定主機名,利用/etc/hosts檔案來解析自己的集群中所有的主機名,相應的,集群的配置應該改成使用主機名的方式

修改主機名:

hostname python_web1

cat /etc/hostname 

python_web1

修改host檔案:

[root@python_web1 ~]# cat /etc/hosts 

192.168.2.3 python_web1

[root@python_web1 ~]# ping python_web1

修改ssh的服務埠

[root@python_web1 ~]# cat /etc/ssh/sshd_config |grep port

port 52000

[root@python_web1 ~]# systemctl  restart sshd.service 

ssh登入

[root@python_web1 ~]# ssh -p 52000

192.168.2.3

scp上傳

[root@python_web1 wen]# scp -p52000 yan.txt [email protected]:/root

ssh秘鑰登入

[root@python_web1 ~]# ssh-keygen 

[root@python_web1 ~]# ssh-copy-id -i ./.ssh/id_rsa.pub

192.168.2.2 -p 52000

[root@python_web1 ~]# ssh -p 52000

192.168.2.3

4.整理bash命令型別,驗證尋找乙個命令的優先順序

命令分為:

==> alias(別名)

==> compound commands()

==> function 

==> build_in

==> hash

==> $path

==> error: command not found

網路相關配置

1 臨時配置網路 ip,閘道器,dns 永久配置 臨時配置 永久配置 dhcp必須改成static,但是我不想改 關防火牆 systemctl stop firewarlld systemctl disable firewalld 關閉selinux vim etc sysconfig selinu...

Docker 網路相關配置

docker啟動的時候會在主機上自動建立乙個docker0虛擬網橋,實際上是乙個linux網橋,它會在掛載其上的藉口之間進行 同時,docker隨機分配乙個本地未占用的私有網段中的乙個位址給docker介面,掩碼為255.255.0.0 且啟動的容器內的網口也會分配乙個同一網段的位址172.17.0...

linux網路配置相關檔案

網路介面 inte ce 是網路硬體裝置在作業系統中的表示方法,比如網絡卡在linux作業系統中用ethx,是由0開始的正整數,比如eth0 eth1.ethx。而普通貓和adsl的介面是 pppx,比如ppp0等 機器中所有可用網絡卡及名字 完整的引數說明參考 linux certif man i...