Windows Docker 固定容器IP地址 透明網路驅動程式
測試環境:
Windows Server 2019資料中心版本
步驟一:
1. 獲取當前所有的網絡卡
PS C:\> Get-NetAdapter
結果:
返回所有的網絡卡資訊,選擇你需要開發的網絡卡名稱,注意這裡的網絡卡不能是虛擬網絡卡,應該是未進行虛擬化的物理網絡卡。
2.建立Docker的透明網路驅動
docker network create -d "transparent" --subnet 192.168.0.0/24 --gateway 192.168.0.1 -o com.docker.network.windowsshim.dnsservers="192.168.0.254" -o com.docker.network.windowsshim.interface="NIC2" my_transparent
意思就是通過NIC2建立一個透明網路,可進行物理交換機的訪問。其中DNS的地址為192.168.0.254,閘道器地址為192.168.0.1,子網掩碼:255.255.255.0
3.指定改網路執行容器
docker run -v c:\app:c:\app -it -d --ip=192.168.0.92 --net=my_transparent --name=ibms ibms:v1.50
指定容器執行的IP地址為192.168.0.92,如果你需要動態分配IP就不指定ip引數。
4.檢視執行結果
docker exec -it ibms cmd
然後執行命令:
ipconfig /all
獲得結果:
Windows IP Configuration
Host Name . . . . . . . . . . . . : bb304d962c2d
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Hybrid
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
Ethernet adapter vEthernet (Ethernet):
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Hyper-V Virtual Ethernet Adapter #4
Physical Address. . . . . . . . . : 00-15-5D-AF-F2-5A
DHCP Enabled. . . . . . . . . . . : No
Autoconfiguration Enabled . . . . : Yes
Link-local IPv6 Address . . . . . : fe80::2904:8bb9:e118:70a7%46(Preferred)
IPv4 Address. . . . . . . . . . . : 192.168.0.92(Preferred)
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.0.1
DNS Servers . . . . . . . . . . . : 192.168.0.254
NetBIOS over Tcpip. . . . . . . . : Disabled
驗證正確!