当前位置:网站首页>IP netns command (memo)
IP netns command (memo)
2022-07-07 18:55:00 【fananchong2】
Linux Network Namespace
Linux Network Namespace It is the foundation of containerization
ip netns Is based on Linux Network Namespace A utility for
Get familiar with it here ip netns Use , To understand how Linux Network virtualization under
establish 1 A virtual network
# Create a file called netns1 Of network namespace
sudo ip netns add netns1
# Use ip netns exec Order to enter network namespace
sudo ip netns exec netns1 ip link list
# Get into netns1 This network namespace , Set the device status to UP
sudo ip netns exec netns1 ip link set dev lo up
# Try ping netns1 This network namespace Of 127.0.0.1
sudo ip netns exec netns1 ping 127.0.0.1
# See what's in the system network namespace
ip netns list
# Delete network namespace
sudo ip netns delete netns1
2 Virtual network interworking
#!/bin/bash
# establish network namespace ns0 ns1
sudo ip netns add ns0
sudo ip netns add ns1
# Use veth pair establish 2 Virtual network card ; Add to respectively ns0 ns1 wetowrk namespace
sudo ip link add veth0 type veth peer name veth1
sudo ip link set veth0 netns ns0
sudo ip link set veth1 netns ns1
# binding ip
sudo ip netns exec ns0 ip link set dev lo up
sudo ip netns exec ns1 ip link set dev lo up
sudo ip netns exec ns0 ifconfig veth0 10.1.1.1/24 up
sudo ip netns exec ns1 ifconfig veth1 10.1.1.2/24 up
# Delete network namespace
sudo ip netns delete ns0
sudo ip netns delete ns1
Multiple virtual networks are interconnected
#!/bin/bash
### centos
## yum install -y bridge-utils
### ubuntu
## apt-get install -y bridge-utils
# Add the bridge br0
sudo brctl addbr br0
# Start the bridge br0
sudo ip link set br0 up
# establish network namespace ns0 ns1 ns2
sudo ip netns add ns0
sudo ip netns add ns1
sudo ip netns add ns2
# establish veth peer
sudo ip link add veth0-ns type veth peer name veth0-br
sudo ip link add veth1-ns type veth peer name veth1-br
sudo ip link add veth2-ns type veth peer name veth2-br
# take veth Move one end of to netns in
sudo ip link set veth0-ns netns ns0
sudo ip link set veth1-ns netns ns1
sudo ip link set veth2-ns netns ns2
# binding ip
sudo ip netns exec ns0 ip link set dev lo up
sudo ip netns exec ns1 ip link set dev lo up
sudo ip netns exec ns2 ip link set dev lo up
sudo ip netns exec ns0 ifconfig veth0-ns 10.1.1.1/24 up
sudo ip netns exec ns1 ifconfig veth1-ns 10.1.1.2/24 up
sudo ip netns exec ns2 ifconfig veth2-ns 10.1.1.3/24 up
# Set the default route , Can stay overnight host
sudo ip netns exec ns0 route add default gw 10.1.1.254 veth0-ns
sudo ip netns exec ns1 route add default gw 10.1.1.254 veth1-ns
sudo ip netns exec ns2 route add default gw 10.1.1.254 veth2-ns
# take veth The other end of is started and attached to the bridge
sudo ip link set veth0-br up
sudo ip link set veth1-br up
sudo ip link set veth2-br up
sudo brctl addif br0 veth0-br
sudo brctl addif br0 veth1-br
sudo brctl addif br0 veth2-br
# Set up the bridge IP
sudo ip addr add 10.1.1.254/24 dev br0
# Remove the bridge
sudo ifconfig veth0-br 0
sudo ifconfig veth1-br 0
sudo ifconfig veth2-br 0
sudo brctl delif br0 veth0-br
sudo brctl delif br0 veth1-br
sudo brctl delif br0 veth2-br
sudo ip link set br0 down
sudo brctl delbr br0
other
- I haven't got through the virtual network yet, how to access the external network
- The host restarts , The network settings of the above command will be reset , Reassurance experiment
边栏推荐
- PTA 1102 教超冠军卷
- What are the financial products in 2022? What are suitable for beginners?
- RISCV64
- [sword finger offer] 59 - I. maximum value of sliding window
- Simple configuration of single arm routing and layer 3 switching
- 高考填志愿规则
- ip netns 命令(备忘)
- 海量数据去重的hash,bitmap与布隆过滤器Bloom Filter
- 强化学习-学习笔记8 | Q-learning
- unity2d的Rigidbody2D的MovePosition函数移动时人物或屏幕抖动问题解决
猜你喜欢
Will low code help enterprises' digital transformation make programmers unemployed?
Learn open62541 -- [67] add custom enum and display name
NAT地址转换
[software test] from the direct employment of the boss of the enterprise version, looking at the resume, there is a reason why you are not covered
Download, installation and development environment construction of "harmonyos" deveco
【Unity Shader】插入Pass实现模型遮挡X光透视效果
小试牛刀之NunJucks模板引擎
回归问题的评价指标和重要知识点总结
AI defeated mankind and designed a better economic mechanism
卖空、加印、保库存,东方甄选居然一个月在抖音卖了266万单书
随机推荐
Kubernetes DevOps CD工具对比选型
[demo] circular queue and conditional lock realize the communication between goroutines
Will low code help enterprises' digital transformation make programmers unemployed?
通过 Play Integrity API 的 nonce 字段提高应用安全性
Afghan interim government security forces launched military operations against a hideout of the extremist organization "Islamic state"
A few simple steps to teach you how to see the K-line diagram
Redis
[principles and technologies of network attack and Defense] Chapter 3: network reconnaissance technology
Static routing configuration
Some key points in the analysis of spot Silver
Will domestic software testing be biased
3.关于cookie
Discuss | what preparations should be made before ar application is launched?
GSAP animation library
『HarmonyOS』DevEco的下载安装与开发环境搭建
More than 10000 units were offline within ten days of listing, and the strength of Auchan Z6 products was highly praised
微信网页调试8.0.19换掉X5内核,改用xweb,所以x5调试方式已经不能用了,现在有了解决方案
回归问题的评价指标和重要知识点总结
[PaddleSeg源码阅读] PaddleSeg Validation 中添加 Boundary IoU的计算(1)——val.py文件细节提示
海量数据去重的hash,bitmap与布隆过滤器Bloom Filter