3 Star 2 Fork 0

Gitee 极速下载 / EthUDP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/bg6cq/ethudp
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

EthUDP

Ethernet over UDP, similar of VXLAN, transport Ethernet packet via UDP, support data encryption, udp connection failover

Sample config

Cross Internet, connect your ethenets/通过互联网桥接2个以太网段

Sample config

package needs to compile

CentOS:

openssl-devel lz4-devel libpcap-devel

Debian

libssl-dev liblz4-dev libpcap-dev

and Debian liblz4 miss LZ4_compress_fast, you need rebuild it as https://github.com/facebook/mcrouter/issues/149

apt-get install dpkg-dev debhelper
echo "deb-src http://ftp.de.debian.org/debian/ stretch main" > /etc/apt/sources.list.d/stretch-source-packages.list
apt-get update
apt-get source lz4=0.0~r131-2
cd lz4-0.0~r131
dpkg-buildpackage -rfakeroot -uc -b
cd ..
dpkg -i liblz4-1_0.0~r131-2_amd64.deb liblz4-dev_0.0~r131-2_amd64.deb

Increasing Linux kernel network buffers

For better performance, increase the UDP receive buffer size from 128K to 32MB

sysctl -w net.core.rmem_max=33554432

1. mode e

Bridge two ethernets using UDP

          |-------Internet---------|
          |                        |
          |                        |
          |IPA                  IPB|
          |eth0                eth0|
+---------+----+              +----+---------+
|   server A   |              |   server B   |
+------+-------+              +-------+------+
       | eth1                    eth1 |
       |                              |
       |                              |
       |                              |
  +----+---+                     +----+----+
  | HOST 1 |                     |  HOST 2 |
  +--------+                     +---------+

Each server connects Internet via interface eth0, IP is IPA & IPB.

On server A, run following command

ip link set eth1 up
ethtool -K eth1 gro off
ifconfig eth1 mtu 1508
./EthUDP -e IPA 6000 IPB 6000 eth1

On server B, run following command

ip link set eth1 up
ethtool -K eth1 gro off
ifconfig eth1 mtu 1508
./EthUDP -e IPB 6000 IPA 6000 eth1

bridge HOST 1 and HOST 2 via internet using UDP port 6000

how it works:

  • open raw socket for eth1
  • open udp socket to remote host
  • read packet from raw socket, send to udp socket
  • read packet from udp socket, send to raw socket

2. mode i

create a tap tunnel interface using UDP

       |------------Internet--------------|
       |                                  |
       |                                  |
       |IPA                            IPB|
       |eth0                          eth0|
+------+-------+                  +-------+------+
|   server A   +--IP1--------IP2--+   server B   |
+--------------+                  +--------------+

Each server connects Internet via interface eth0, IP is IPA & IPB.

On server A, run following command

./EthUDP -i IPA 6000 IPB 6000 IP1 masklen

On server B, run following command

./EthUDP -i IPB 6000 IPA 6000 IP2 masklen

create a tap tunnel interface and setup IP1/masklen IP2/masklen via internet using UDP port 6000

how it works:

  • open tap raw socket, setip addr
  • open udp socket to remote host
  • read packet from raw socket, send to udp socket
  • read packet from udp socket, send to raw socket

3. mode b

create a tap tunnel interface using UDP

       |------------Internet--------------|
       |                                  |
       |                                  |
       |IPA                            IPB|
       |eth0                          eth0|
+------+-------+                  +-------+------+
|   server A   +--bridge----bridge|   server B   |
+------+-------+                  +-------+------+
       |eth1                          eth1|
       |                                  |
       |                                  |
  +----+---+                         +----+----+
  | HOST 1 |                         |  HOST 2 |
  +--------+                         +---------+

Each server connects Internet via interface eth0, IP is IPA & IPB.

On server A, run following command

brctl addbr br0
ip link set eth1 up
brctl addif br0 eth1
./EthUDP -b IPA 6000 IPB 6000 br0

On server B, run following command

brctl addbr br0
ip link set eth1 up
brctl addif br0 eth1
./EthUDP -b IPB 6000 IPA 6000 br0

create a tap tunnel interface and add to br0 internet using UDP port 6000, Host 1 and Host 2 can communicate with each other.

how it works:

  • open tap raw socket, run shell brctl add if ??? tap? add to bridge
  • open udp socket to remote host
  • read packet from raw socket, send to udp socket
  • read packet from udp socket, send to raw socket

4. mode t

using libpcap to capure packets and tranfer to remote site

Note:

  1. support 802.1Q VLAN frame transport

NIC MTU should set to 1504 or 1508, for single 802.1Q or double 802.1Q tag. But some NICs do not allow change the default 1500.

  1. support automatic tcp mss fix

  2. if your NIC support GRO, you should disable it by

ethtool -K eth1 gro off
  1. support connection from NATed server

If server A has public IP, while server B connect from NATed IP, please run (port is 0)

./EthUDP -e -p password IPA 6000 0.0.0.0 0 eth1 in A
./EthUDP -e -p password IPB 6000 IPA 6000 eth1 in B
  1. support master slave switchover

Using master udp connection, switch to slave if master down(send/recv ping/pong message 1/sec)

./EthUDP ... IPA portA IPB portB ... SlaveIPA SlaveportA SlaveIPB SlaveportB
./EthUDP ... IPB portB IPA portA ... SlaveIPB SlaveportB SlaveIPA SlaveportA
  1. support AES-128/192/256 encrypt/decrypt UDP traffic
./EthUDP ... -enc aes-128 -k aes_key ...
  1. support LZ4 compress
./EthUDP ... -lz4 1 ...
  1. support VLAN maping
./EthUDP ... -m vlanmap.txt ...

vlanmap.txt
#my_vlan remote_vlan
10 30
40 100
  1. support UDP packet fragment
./EthUDP ... -mtu 1500

split UDP packet length exceed 1500 bytes to two UDP packets

空文件

简介

UDP 以太网,类似于 VXLAN,通过 UDP 传输以太网数据包 展开 收起
C 等 2 种语言
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/mirrors/ethudp.git
git@gitee.com:mirrors/ethudp.git
mirrors
ethudp
EthUDP
master

搜索帮助