当前位置:网站首页>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
边栏推荐
- Charles+Postern的APP抓包
- Yunjing network technology interview question [Hangzhou multi tester] [Hangzhou multi tester _ Wang Sir]
- Save the memory of the model! Meta & UC Berkeley proposed memvit. The modeling time support is 30 times longer than the existing model, and the calculation amount is only increased by 4.5%
- Kirk Borne的本周学习资源精选【点击标题直接下载】
- 静态路由配置
- 国内的软件测试会受到偏见吗
- 高考填志愿规则
- 6.关于jwt
- Recommend free online SMS receiving platform in 2022 (domestic and foreign)
- Will domestic software testing be biased
猜你喜欢

Ten thousand words nanny level long article -- offline installation guide for datahub of LinkedIn metadata management platform

回归问题的评价指标和重要知识点总结

NAT地址转换

Industry case | digital operation base helps the transformation of life insurance industry

More than 10000 units were offline within ten days of listing, and the strength of Auchan Z6 products was highly praised

Redis集群与扩展

Static routing configuration

RISCV64

Simple configuration of single arm routing and layer 3 switching

Redis cluster and expansion
随机推荐
[principles and technologies of network attack and Defense] Chapter 3: network reconnaissance technology
云景网络科技面试题【杭州多测师】【杭州多测师_王sir】
财富证券证券怎么开户?通过链接办理股票开户安全吗
What are the financial products in 2022? What are suitable for beginners?
现货白银分析中的一些要点
静态路由配置
Hash, bitmap and bloom filter for mass data De duplication
面试唯品会实习测试岗、抖音实习测试岗【真实投稿】
More than 10000 units were offline within ten days of listing, and the strength of Auchan Z6 products was highly praised
【Unity Shader】插入Pass实现模型遮挡X光透视效果
清华、剑桥、UIC联合推出首个中文事实核查数据集:基于证据、涵盖医疗社会等多个领域
Afghan interim government security forces launched military operations against a hideout of the extremist organization "Islamic state"
现在网上期货开户安全吗?国内有多少家正规的期货公司?
Kirk Borne的本周学习资源精选【点击标题直接下载】
sqlite sql 异常 near “with“: syntax error
unity2d的Rigidbody2D的MovePosition函数移动时人物或屏幕抖动问题解决
AntiSamy:防 XSS 攻击的一种解决方案使用教程
Summary of evaluation indicators and important knowledge points of regression problems
socket编程之常用api介绍与socket、select、poll、epoll高并发服务器模型代码实现
【剑指 Offer】59 - I. 滑动窗口的最大值