mirror of
https://github.com/dndx/phantun.git
synced 2025-04-03 18:49:29 +08:00
phantun: fix tun config
Signed-off-by: Randy Li <ayaka@soulik.info>
This commit is contained in:
parent
028a32d197
commit
7a3d47a83f
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user