mirror of https://github.com/dswd/vpncloud.git
23 lines
487 B
Python
23 lines
487 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from common import EC2Environment, CREATE
|
||
|
import time
|
||
|
|
||
|
setup = EC2Environment(
|
||
|
region = "eu-central-1",
|
||
|
node_count = 2,
|
||
|
instance_type = 't3.nano',
|
||
|
vpncloud_version = "1.4.0"
|
||
|
)
|
||
|
|
||
|
sender = setup.nodes[0]
|
||
|
receiver = setup.nodes[1]
|
||
|
|
||
|
sender.start_vpncloud(ip="10.0.0.1/24")
|
||
|
receiver.start_vpncloud(ip="10.0.0.2/24", peers=["{}:3210".format(sender.private_ip)])
|
||
|
time.sleep(1.0)
|
||
|
|
||
|
sender.ping("10.0.0.2")
|
||
|
|
||
|
sender.stop_vpncloud()
|
||
|
receiver.stop_vpncloud()
|