mirror of
https://github.com/dndx/phantun.git
synced 2025-04-05 19:49:29 +08:00
Compare commits
No commits in common. "main" and "v0.7.0" have entirely different histories.
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/target
|
/target
|
||||||
|
Cargo.lock
|
||||||
|
1101
Cargo.lock
generated
1101
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -35,7 +35,7 @@ Table of Contents
|
|||||||
|
|
||||||
# Latest release
|
# Latest release
|
||||||
|
|
||||||
[v0.7.0](https://github.com/dndx/phantun/releases/tag/v0.7.0)
|
[v0.6.0](https://github.com/dndx/phantun/releases/tag/v0.6.0)
|
||||||
|
|
||||||
# Overview
|
# Overview
|
||||||
|
|
||||||
@ -262,7 +262,7 @@ is the following (using IPv4 below as an example):
|
|||||||
Note that Phantun does not add any additional header other than IP and TCP headers in order to pass through
|
Note that Phantun does not add any additional header other than IP and TCP headers in order to pass through
|
||||||
stateful packet inspection!
|
stateful packet inspection!
|
||||||
|
|
||||||
Phantun's additional overhead: `12 bytes`. In other words, when using Phantun, the usable payload for
|
Phantun's additional overhead: `12 bytes`. I other words, when using Phantun, the usable payload for
|
||||||
UDP packet is reduced by 12 bytes. This is the minimum overhead possible when doing such kind
|
UDP packet is reduced by 12 bytes. This is the minimum overhead possible when doing such kind
|
||||||
of obfuscation.
|
of obfuscation.
|
||||||
|
|
||||||
|
@ -402,8 +402,8 @@ impl Stack {
|
|||||||
/// Connects to the remote end. `None` returned means
|
/// Connects to the remote end. `None` returned means
|
||||||
/// the connection attempt failed.
|
/// the connection attempt failed.
|
||||||
pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> {
|
pub async fn connect(&mut self, addr: SocketAddr) -> Option<Socket> {
|
||||||
let mut rng = SmallRng::from_os_rng();
|
let mut rng = SmallRng::from_entropy();
|
||||||
for local_port in rng.random_range(32768..=60999)..=60999 {
|
for local_port in rng.gen_range(32768..=60999)..=60999 {
|
||||||
let local_addr = SocketAddr::new(
|
let local_addr = SocketAddr::new(
|
||||||
if addr.is_ipv4() {
|
if addr.is_ipv4() {
|
||||||
IpAddr::V4(self.local_ip)
|
IpAddr::V4(self.local_ip)
|
||||||
|
@ -15,7 +15,7 @@ pub enum IPPacket<'p> {
|
|||||||
V6(ipv6::Ipv6Packet<'p>),
|
V6(ipv6::Ipv6Packet<'p>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IPPacket<'_> {
|
impl<'a> IPPacket<'a> {
|
||||||
pub fn get_source(&self) -> IpAddr {
|
pub fn get_source(&self) -> IpAddr {
|
||||||
match self {
|
match self {
|
||||||
IPPacket::V4(p) => IpAddr::V4(p.get_source()),
|
IPPacket::V4(p) => IpAddr::V4(p.get_source()),
|
||||||
|
@ -156,8 +156,7 @@ async fn main() -> io::Result<()> {
|
|||||||
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
||||||
.address(tun_local)
|
.address(tun_local)
|
||||||
.destination(tun_peer)
|
.destination(tun_peer)
|
||||||
.queues(num_cpus)
|
.try_build_mq(num_cpus)
|
||||||
.build()
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
if remote_addr.is_ipv6() {
|
if remote_addr.is_ipv6() {
|
||||||
|
@ -155,8 +155,7 @@ async fn main() -> io::Result<()> {
|
|||||||
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
.up() // or set it up manually using `sudo ip link set <tun-name> up`.
|
||||||
.address(tun_local)
|
.address(tun_local)
|
||||||
.destination(tun_peer)
|
.destination(tun_peer)
|
||||||
.queues(num_cpus)
|
.try_build_mq(num_cpus)
|
||||||
.build()
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
if let (Some(tun_local6), Some(tun_peer6)) = (tun_local6, tun_peer6) {
|
if let (Some(tun_local6), Some(tun_peer6)) = (tun_local6, tun_peer6) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user