Unsolved
This post is more than 5 years old
6 Posts
0
836
April 20th, 2018 07:00
how to create a vnet.label
Hi all guys,
please can you suggest me how to create a veth alias like thise ?
net show settings
port enabled state DHCP IP address netmask type additional setting
/prefix length
---------- ------- ------- ---- --------------------------- --------------- ---- -------------------------------
eth0a yes running n/a n/a n/a n/a bonded to veth2
eth1a yes running n/a n/a n/a n/a bonded to veth2
veth2.1199 yes running no 10.129.xx.xx 255.255.254.0 n/a
fe80::260:16ff:fe69:2262** /64
veth2.1260 yes running no 10.129.xx.xx 255.255.255.224 n/a
fe80::260:16ff:fe69:2262** /64
veth2 yes running no (not specified) (not specified) n/a lacp hash xor-L2L3: eth0a,eth1a
fe80::260:16ff:fe69:2262** /64
thank you!!!
0 events found


ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
April 23rd, 2018 10:00
Top of my head...
net aggregate add veth2 interfaces eth0a eth1a mode lacp hash xor-L2L3 up 4500 down 4500
net config veth2 0
net config veth2 up
net create interface veth2 vlan 1260
net create interface veth2 vlan 1199
net config veth2.1260 10.129.xx.xx netmask 255.255.255.224
net config veth2.1199 10.129.xx.xx netmask 255.255.254.0
(search for these commands and you will find relevant docs describing it in more details)
Anonymous User
6 Posts
0
April 26th, 2018 01:00
before to post on the community I searched in the documentation but I can't understand how to create an alias like these, please if someone can help me I appreciate.
thank you very much, regards
Anonymous User
6 Posts
0
May 7th, 2018 05:00
can anyone help me ? some idea ??
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
May 8th, 2018 07:00
Did you try what I wrote as original response?