phantun: fix tun config

Signed-off-by: Randy Li <ayaka@soulik.info>
This commit is contained in:
Randy Li 2024-12-11 23:54:29 +08:00
parent 028a32d197
commit 7a3d47a83f
2 changed files with 4 additions and 0 deletions

View File

@ -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 <tun-name> up`.
.address(tun_local)
.destination(tun_peer)

View File

@ -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 <tun-name> up`.
.address(tun_local)
.destination(tun_peer)