gpt4 book ai didi

python - 将 IP 配置从一个接口(interface)移动到另一个接口(interface)

转载 作者:太空狗 更新时间:2023-10-29 12:36:30 24 4
gpt4 key购买 nike

我正在开发一个 Python 脚本来测试一个网络应用程序。作为测试的一部分,它需要将网络配置(IP 地址、路由...)从一个接口(interface)(物理接口(interface))移动到另一个接口(interface)(网桥),并且测试完成后,将系统恢复到原来的状态。在 Python 中实现此目的最优雅的方法是什么?

我想到的一些想法:

  1. 不要在测试期间取消分配给物理接口(interface) 的IP 地址,以免路由丢失。但这意味着相同的 IP 地址将在测试期间共存于 网桥 上。在某些特定的 Linux 内核上这会是一个问题吗?虽然,它似乎在我的系统上工作得很好......
  2. 将 IP 地址分配给网桥并从物理接口(interface)取消分配。易于在 python 中实现,因为这需要进行简单的 ifconfig 调用和解析。但是,如果默认路由是通过物理接口(interface),那么当我从物理接口(interface)取消分配 IP 地址时,它会同时消失。
  3. 解析 ip route ls 输出并将路由与 IP 配置一起移动。这似乎是唯一合理的方法,但需要大量编码。

  4. 也许有更优雅的东西?比如iptables-save eth0>eth0_confiptables-restore eth0_conf?还有其他建议吗?

这个测试工具必须是可移植的,并且能够在不同的 Linux 内核上运行。

最佳答案

我建议采用以下方法:

  1. 确保网桥接口(interface)关闭
  2. 配置网桥接口(interface)
  3. 执行ifconfig eth0 down && ifconfig br0 up

并恢复:

  1. 执行 ifconfig br0 down && ifconfig eth0 up

现在对于路线,它取决于您拥有的路线类型。如果您使用显式接口(interface)定义静态路由,您唯一的选择似乎是解析 ip route ls 并将它们转换为新接口(interface)。

您还可以随意调整 up 和 down 命令的顺序以及多个路由表:

ip route add <whatever> table 2
ip rule add from br0 table 2

但这可能会变得棘手,所以我的建议是坚持使用简单的解决方案,即使它包含更多编码。

这是 xend 的 network-bridge 脚本中实现此目的的另一个示例:

# Usage: transfer_addrs src dst
# Copy all IP addresses (including aliases) from device $src to device $dst.
transfer_addrs () {
local src=$1
local dst=$2
# Don't bother if $dst already has IP addresses.
if ip addr show dev ${dst} | egrep -q '^ *inet ' ; then
return
fi
# Address lines start with 'inet' and have the device in them.
# Replace 'inet' with 'ip addr add' and change the device name $src
# to 'dev $src'.
ip addr show dev ${src} | egrep '^ *inet ' | sed -e "
s/inet/ip addr add/
s@\([0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+/[0-9]\+\)@\1@
s/${src}/dev ${dst}/
" | sh -e
# Remove automatic routes on destination device
ip route list | sed -ne "
/dev ${dst}\( \|$\)/ {
s/^/ip route del /
p
}" | sh -e
}

# Usage: transfer_routes src dst
# Get all IP routes to device $src, delete them, and
# add the same routes to device $dst.
# The original routes have to be deleted, otherwise adding them
# for $dst fails (duplicate routes).
transfer_routes () {
local src=$1
local dst=$2
# List all routes and grep the ones with $src in.
# Stick 'ip route del' on the front to delete.
# Change $src to $dst and use 'ip route add' to add.
ip route list | sed -ne "
/dev ${src}\( \|$\)/ {
h
s/^/ip route del /
P
g
s/${src}/${dst}/
s/^/ip route add /
P
d
}" | sh -e
}

关于python - 将 IP 配置从一个接口(interface)移动到另一个接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10186298/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com