From 7a3d47a83f1f568af6f36e4bc0b3a2bbff0b3d3c Mon Sep 17 00:00:00 2001 From: Randy Li Date: Wed, 11 Dec 2024 23:54:29 +0800 Subject: [PATCH] phantun: fix tun config Signed-off-by: Randy Li --- phantun/src/bin/client.rs | 2 ++ phantun/src/bin/server.rs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/phantun/src/bin/client.rs b/phantun/src/bin/client.rs index e0c4875..b0ee571 100644 --- a/phantun/src/bin/client.rs +++ b/phantun/src/bin/client.rs @@ -153,6 +153,8 @@ async fn main() -> io::Result<()> { let tun = TunBuilder::new() .name(tun_name) // if name is empty, then it is set by kernel. + .tap(false) + .packet_info(false) .up() // or set it up manually using `sudo ip link set up`. .address(tun_local) .destination(tun_peer) diff --git a/phantun/src/bin/server.rs b/phantun/src/bin/server.rs index 5f33f39..87de1c5 100644 --- a/phantun/src/bin/server.rs +++ b/phantun/src/bin/server.rs @@ -152,6 +152,8 @@ async fn main() -> io::Result<()> { let tun = TunBuilder::new() .name(tun_name) // if name is empty, then it is set by kernel. + .tap(false) + .packet_info(false) .up() // or set it up manually using `sudo ip link set up`. .address(tun_local) .destination(tun_peer)