Compile SRv6 uSID and VPP on ubuntu 20.04
7月 11th, 2020 No Comments »
PS: Compile Server base on “focal-server-cloudimg-amd64.vmdk”, 20200706 update.
General Config on ubuntu
Config port by new “ip” cmd, and DNS
[email protected]:/opt# ip addr add 10.75.37.59/24 dev ens4 # config addr for one port [email protected]:/opt# ip addr del 172.16.1.163/24 dev ens3 # delet addr for one port [email protected]:/opt# ip addr # equal with ifconfig [email protected]:/opt# ip link set ens4 up # up one port [email protected]:/opt# ip -s link ls ens4 # cool cmd, check RX/TX packets, errors, dropped, overrun, mcast [email protected]:/opt# ip route add default via 10.75.37.1 # config default route [email protected]:/opt# ip route # check v4 route table [email protected]:/opt# ip -6 route # check v6 route table [email protected]:/opt# echo 'nameserver 64.104.123.144' > /etc/resolv.conf