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
root@server-test:/opt# ip addr add 10.75.37.59/24 dev ens4 # config addr for one port root@server-test:/opt# ip addr del 172.16.1.163/24 dev ens3 # delet addr for one port root@server-test:/opt# ip addr # equal with ifconfig root@server-test:/opt# ip link set ens4 up # up one port root@server-test:/opt# ip -s link ls ens4 # cool cmd, check RX/TX packets, errors, dropped, overrun, mcast root@server-test:/opt# ip route add default via 10.75.37.1 # config default route root@server-test:/opt# ip route # check v4 route table root@server-test:/opt# ip -6 route # check v6 route table root@server-test:/opt# echo 'nameserver 64.104.123.144' > /etc/resolv.conf