Add styling on links
This commit is contained in:
2
static/assets/gowin-n305/vpp/config/boot.vpp
Normal file
2
static/assets/gowin-n305/vpp/config/boot.vpp
Normal file
@ -0,0 +1,2 @@
|
||||
exec /etc/vpp/config/l3.vpp
|
||||
exec /etc/vpp/config/mpls.vpp
|
9
static/assets/gowin-n305/vpp/config/l2.vpp
Normal file
9
static/assets/gowin-n305/vpp/config/l2.vpp
Normal file
@ -0,0 +1,9 @@
|
||||
set int state TwentyFiveGigabitEthernet5/0/0 up
|
||||
set int state TwentyFiveGigabitEthernet5/0/1 up
|
||||
set int l2 xconnect TwentyFiveGigabitEthernet5/0/0 TwentyFiveGigabitEthernet5/0/1
|
||||
set int l2 xconnect TwentyFiveGigabitEthernet5/0/1 TwentyFiveGigabitEthernet5/0/0
|
||||
|
||||
set int state TwoDotFiveGigabitEthernet2/0/0 up
|
||||
set int state TwoDotFiveGigabitEthernet3/0/0 up
|
||||
set int l2 xconnect TwoDotFiveGigabitEthernet2/0/0 TwoDotFiveGigabitEthernet3/0/0
|
||||
set int l2 xconnect TwoDotFiveGigabitEthernet3/0/0 TwoDotFiveGigabitEthernet2/0/0
|
8
static/assets/gowin-n305/vpp/config/l3.vpp
Normal file
8
static/assets/gowin-n305/vpp/config/l3.vpp
Normal file
@ -0,0 +1,8 @@
|
||||
set int state TwentyFiveGigabitEthernet5/0/0 up
|
||||
set int state TwentyFiveGigabitEthernet5/0/1 up
|
||||
set int ip address TwentyFiveGigabitEthernet5/0/0 100.64.1.1/24
|
||||
set int ip address TwentyFiveGigabitEthernet5/0/1 100.64.2.1/24
|
||||
ip route add 48.0.0.0/8 via 100.64.2.2
|
||||
ip route add 16.0.0.0/8 via 100.64.1.2
|
||||
ip neighbor TwentyFiveGigabitEthernet5/0/0 100.64.1.2 50:7c:6f:20:30:70
|
||||
ip neighbor TwentyFiveGigabitEthernet5/0/1 100.64.2.2 50:7c:6f:20:30:71
|
5
static/assets/gowin-n305/vpp/config/mpls.vpp
Normal file
5
static/assets/gowin-n305/vpp/config/mpls.vpp
Normal file
@ -0,0 +1,5 @@
|
||||
mpls table add 0
|
||||
set interface mpls TwentyFiveGigabitEthernet5/0/0 enable
|
||||
set interface mpls TwentyFiveGigabitEthernet5/0/1 enable
|
||||
mpls local-label add 16 eos via 100.64.2.2 TwentyFiveGigabitEthernet5/0/1
|
||||
mpls local-label add 17 eos via 100.64.1.2 TwentyFiveGigabitEthernet5/0/0
|
73
static/assets/gowin-n305/vpp/startup.conf
Normal file
73
static/assets/gowin-n305/vpp/startup.conf
Normal file
@ -0,0 +1,73 @@
|
||||
unix {
|
||||
nodaemon
|
||||
log /var/log/vpp/vpp.log
|
||||
full-coredump
|
||||
cli-listen /run/vpp/cli.sock
|
||||
gid vpp
|
||||
exec /etc/vpp/config/boot.vpp
|
||||
}
|
||||
|
||||
api-trace { on }
|
||||
api-segment { gid vpp }
|
||||
socksvr { default }
|
||||
|
||||
memory {
|
||||
main-heap-size 1G
|
||||
main-heap-page-size default-hugepage
|
||||
}
|
||||
|
||||
cpu {
|
||||
main-core 0
|
||||
corelist-workers 1-7
|
||||
}
|
||||
|
||||
buffers {
|
||||
buffers-per-numa 120000
|
||||
default data-size 2048
|
||||
page-size default-hugepage
|
||||
}
|
||||
|
||||
statseg {
|
||||
size 512M
|
||||
page-size default-hugepage
|
||||
per-node-counters on
|
||||
}
|
||||
|
||||
dpdk {
|
||||
## dev 0000:02:00.0 { name e1 num-rx-queues 3 num-tx-queues 4 num-rx-desc 256 num-tx-desc 4096 }
|
||||
## dev 0000:03:00.0 { name e2 num-rx-queues 3 num-tx-queues 4 num-rx-desc 256 num-tx-desc 4096 }
|
||||
# dev 0000:03:00.0 { name e0 }
|
||||
# dev 0000:04:00.0 { name e1 }
|
||||
# dev 0000:09:00.0 { name e2 }
|
||||
## dev 0000:0a:00.0 { name e3 }
|
||||
dev 0000:0e:00.0 { name xxv0 num-rx-queues 3 num-tx-queues 8 num-rx-desc 256 num-tx-desc 512 }
|
||||
dev 0000:0e:00.1 { name xxv1 num-rx-queues 3 num-tx-queues 8 num-rx-desc 256 num-tx-desc 512 }
|
||||
no-multi-seg
|
||||
decimal-interface-names
|
||||
## uio-driver uio_pci_generic
|
||||
## uio-driver vfio-pci
|
||||
}
|
||||
|
||||
plugins {
|
||||
plugin default { disable }
|
||||
plugin dpdk_plugin.so { enable }
|
||||
plugin rdma_plugin.so { enable }
|
||||
plugin linux_cp_plugin.so { enable }
|
||||
plugin linux_nl_plugin.so { enable }
|
||||
plugin acl_plugin.so { enable }
|
||||
plugin lacp_plugin.so { enable }
|
||||
plugin flowprobe_plugin.so { enable }
|
||||
plugin vxlan_plugin.so { enable }
|
||||
plugin ping_plugin.so { enable }
|
||||
# plugin geneve_plugin.so { enable }
|
||||
}
|
||||
|
||||
logging {
|
||||
default-log-level info
|
||||
default-syslog-log-level notice
|
||||
}
|
||||
|
||||
linux-cp {
|
||||
default netns dataplane
|
||||
lcp-sync
|
||||
}
|
Reference in New Issue
Block a user