You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation requires users a bit cumbersome operations for NAT through wanedge. When the users create a NAT rule they need to know the mac_lease_uuid of a specific simulated interface and the route_link_uuid that links a virtual network and a physical network.
Here vnmgr selects the proper uuid of route_link and create ip_lease for if-glo2vnet based on the parameters passed to vnctl. We might need more information otherwise it's very hard to guess.
The text was updated successfully, but these errors were encountered:
Current implementation requires users a bit cumbersome operations for NAT through wanedge. When the users create a NAT rule they need to know the
mac_lease_uuid
of a specific simulated interface and theroute_link_uuid
that links a virtual network and a physical network.What I did is the following:
(these are passed to vnctl)
memorize
route_link_uuid
:rl-vnet1link1
mac_lease_uuid
ofif-glo2vnetgw
with either vnctl or mysqlor
memorize
mac_lease_uuid
:ml-ecil1m8s
route_link_uuid
andmac_lease_uuid
$ vnctl ip_leases add --uuid il-nat2 --mac-lease-uuid ml-ecil1m8s --ipv4-address 192.168.2.5 --network-uuid nw-global --enable-routing true $ vnctl translations static_address add tr-saddr --ingress-ipv4-address 192.168.2.5 --egress-ipv4-address 10.100.0.20 --route-link-uuid rl-vnet1link1
We need a sort of interface with which the users specify only
ingress_ipv4_address
andegress_ipv4_address
like the followingHere vnmgr selects the proper uuid of route_link and create ip_lease for if-glo2vnet based on the parameters passed to vnctl. We might need more information otherwise it's very hard to guess.
The text was updated successfully, but these errors were encountered: