summaryrefslogtreecommitdiffstats
path: root/src/scripts/vnet/nat64_static
blob: 3cf682d5854e398b6a81632b2bd65d0c67763801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
create packet-generator interface pg0
create packet-generator interface pg1

packet-generator new {
  name f1
  limit 10
  node ip4-input
  size 64-64
  worker 0
  interface pg1
  data {
    UDP: 172.16.1.2 -> 172.16.1.3
    UDP: 3000 -> 37678
    length 128 checksum 0 incrementing 1
  }
}


packet-generator new {
  name f2
  limit 10
  node ip4-input
  size 64-64
  interface pg1
  worker 1
  data {
    UDP: 172.16.1.2 -> 172.16.1.3
    UDP: 3005 -> 38678
    length 128 checksum 0 incrementing 1
  }
}

nat64 add pool address 172.16.1.3
set int ip address pg0 2000::1/64
set int ip address pg1 172.16.1.1/24
set int state pg0 up
set int state pg1 up
set ip6 neighbor pg0 2000::3 abcd.abcd.abcd static
set ip arp static pg1 172.16.1.2 cdef.abcd.abcd
set interface nat64 in pg0 out pg1
nat64 add static bib 2000::3 3001 172.16.1.3 37678 udp
nat64 add static bib 2000::3 3006 172.16.1.3 38678 udp
="cp"> #include <vnet/ip/ip.h> #include <vnet/ethernet/ethernet.h> #include <vppinfra/hash.h> #include <vppinfra/error.h> #include <vppinfra/time_range.h> typedef struct { /* API message ID base */ u16 msg_id_base; /* convenience */ vlib_main_t *vlib_main; vnet_main_t *vnet_main; } http_static_main_t; extern http_static_main_t http_static_main; int http_static_server_enable_api (u32 fifo_size, u32 cache_limit, u32 prealloc_fifos, u32 private_segment_size, u8 * www_root, u8 * uri); #endif /* __included_http_static_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */