高階網路配置

2021-07-30 05:39:20 字數 1080 閱讀 8313

第二單元:高階網路配置

1.ipv6管理和介紹

2.網橋

(1)網路橋接用網路橋實現共享上網主機和客戶機除了利用軟體外,還可以用系統自帶的網路橋建立連線用雙網絡卡的機器做主機

(2)網路橋接的管理命令

brctl ### 橋接管理命令

– show ### 顯示

– addbr ### 新增網橋

– delbr ### 刪除網橋

– addif ### 新增網橋連線

– delif ### 刪除網橋連線

(3)ssh指令碼

yum install expect -y

which expect

/usr/bin/expect

vim /mnt/ssh.exp

#!/usr/bin/expect

set user [ lindex $argv 0 ]

set ipadd [ lindex $argv 1 ]

set pass [ lindex $argv 2 ]

spawn ssh $user@$ipadd

expect

「password」

} interact

expect eof

chmod +x /mnt/ssh.exp

/mnt/ssh.exp root 172.25.254.119 redhat

(4)獲得1~10使用者的使用者名稱腳 本

ssh [email protected] hostname //可以有此種用法

vim gethostname.sh

#!/bin/bash

for num in do

ping -c1 -w1 172.25.254.$num &> /dev/null && (

/mnt/ssh.exp root 172.25.254.$num westos 'userdel -r hello'  |grep -v -e "spawn|

authenticity|ecdsa|yes|passwd")||(

echo 172.25.254.$num is down)

done

docker高階網路配置

當 docker 啟動時,會自動在主機上建立乙個 docker0 虛擬網橋,實際上是 linux 的乙個 bridge,可以理 解為乙個軟體交換機。它會在掛載到它的網口之間進行 當建立乙個 docker 容器的時候,同時會建立了一對 veth pair 介面 當資料報傳送到乙個介面時,另外 乙個介面...

linux高階網路配置

1.網路配置檔案目錄 etc sysconfig network scripts kiosk foundation78 desktop cd etc sysconfig network scripts kiosk foundation78 network scripts ls ifcfg eth0 ...

網路高階配置(橋接)

配置橋接 在我們真機裡面刪除之前配置的網路 cd etc systemctl netword scripts 進入此目錄 編輯 ifcfg enp0s25 bootproto none onboot yes device enp0s25 bridge br0 建立檔案編輯 device br0 on...