Skip to content

Two-node Networking

Assuming the network topology of the two nodes is as follows

  1. Execute on Node A:

    sh
    sudo easytier-core --ipv4 10.144.144.1

    Successful execution of the command will print the following.

    sh
    $ easytier-core --ipv4 10.144.144.1
    Starting easytier with config:
    ############### TOML ##############
    
    instance_name = "default"
    instance_id = "7294d13c-d119-49ae-a5f7-8c3a912538d7"
    ipv4 = "10.144.144.1"
    listeners = [
        "tcp://0.0.0.0:11010",
        "udp://0.0.0.0:11010",
        "wg://0.0.0.0:11011",
    ]
    peer = []
    rpc_portal = "127.0.0.1:15888"
    
    [network_identity]
    network_name = "default"
    network_secret = ""
    
    [flags]
    default_protocol = "tcp"
    enable_encryption = true
    enable_ipv6 = true
    
    -----------------------------------
    xxxx-xx-xx xx:xx:xx: tun device ready. dev: tun0
    xxxx-xx-xx xx:xx:xx: new listener added. listener: tcp://0.0.0.0:11010
    xxxx-xx-xx xx:xx:xx: new listener added. listener: udp://0.0.0.0:11010
  2. Execute on Node B

    sh
    sudo easytier-core --ipv4 10.144.144.2 --peers udp://22.1.1.1:11010
  3. Test Connectivity

    The two nodes should connect successfully and be able to communicate within the virtual subnet

    sh
    ping 10.144.144.2

    Use easytier-cli to view node information in the subnet

    sh
    easytier-cli peer
    ipv4hostnamecostlat_msloss_raterx_bytestx_bytestunnel_protonat_typeid
    10.144.144.1abc-dec13.452017.33kB20.42kBudpFullCone390879727

    Use easytier-cli to view routing information in the subnet

    sh
    easytier-cli route
    ipv4hostnameproxy_cidrsnext_hop_ipv4next_hop_hostnamenext_hop_latcost
    10.144.144.1abc-decDIRECT3.6461

    Use easytier-cli to view local node info.

    sh
    easytier-cli node
    ┌───────────────┬──────────────────────┐
    │ Virtual IP    │ 10.144.144.1         │
    ├───────────────┼──────────────────────┤
    │ Hostname      │ archlinux-base       │
    ├───────────────┼──────────────────────┤
    │ Proxy CIDRs   │ 10.147.223.0/24      │
    ├───────────────┼──────────────────────┤
    │ Peer ID       │ 2616333191           │
    ├───────────────┼──────────────────────┤
    │ Public IP     │ 75.52.125.26         │
    ├───────────────┼──────────────────────┤
    │ UDP Stun Type │ FullCone             │
    ├───────────────┼──────────────────────┤
    │ Listener 1    │ tcp://0.0.0.0:11010  │
    ├───────────────┼──────────────────────┤
    │ Listener 2    │ udp://0.0.0.0:11010  │
    ├───────────────┼──────────────────────┤
    │ Listener 3    │ wg://0.0.0.0:11011   │
    ├───────────────┼──────────────────────┤
    │ Listener 4    │ ws://0.0.0.0:11011/  │
    ├───────────────┼──────────────────────┤
    │ Listener 5    │ wss://0.0.0.0:11012/ │
    ├───────────────┼──────────────────────┤
    │ Listener 6    │ udp://[::]:37039     │
    └───────────────┴──────────────────────┘

Released under the Apache License 2.0.