aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gprs_params.vty
blob: e0c8b39e094e4f08898343f20161bc8f90c1254b (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
OsmoBSC> enable
OsmoBSC# configure terminal
OsmoBSC(config)# network
OsmoBSC(config-net)# bts 0

OsmoBSC(config-net-bts)# ### GPRS is disabled by default
OsmoBSC(config-net-bts)# show running-config
...
 bts 0
...
  gprs mode none
...

OsmoBSC(config-net-bts)# ### Default [E]GPRS params
OsmoBSC(config-net-bts)# gprs mode gprs
OsmoBSC(config-net-bts)# show running-config
...
 bts 0
...
  gprs mode gprs
  gprs routing area 0
  gprs network-control-order nc0
  gprs power-control alpha 0
  gprs cell bvci 2
  gprs cell timer blocking-timer 3
  gprs cell timer blocking-retries 3
  gprs cell timer unblocking-retries 3
  gprs cell timer reset-timer 3
  gprs cell timer reset-retries 3
  gprs cell timer suspend-timer 10
  gprs cell timer suspend-retries 3
  gprs cell timer resume-timer 10
  gprs cell timer resume-retries 3
  gprs cell timer capability-update-timer 10
  gprs cell timer capability-update-retries 3
  gprs nsei 0
  gprs ns timer tns-block 3
  gprs ns timer tns-block-retries 3
  gprs ns timer tns-reset 3
  gprs ns timer tns-reset-retries 3
  gprs ns timer tns-test 30
  gprs ns timer tns-alive 3
  gprs ns timer tns-alive-retries 10
  gprs nsvc 0 nsvci 0
  gprs nsvc 0 local udp port 0
  gprs nsvc 1 nsvci 0
  gprs nsvc 1 local udp port 0
...


OsmoBSC(config-net-bts)# ### NSVC sub-command syntax
OsmoBSC(config-net-bts)# gprs nsvc?
  nsvc  Network Service Virtual Connection (NS-VC)
OsmoBSC(config-net-bts)# gprs nsvc ?
  <0-1>  NSVC Logical Number
OsmoBSC(config-net-bts)# gprs nsvc 0 ?
  nsvci   NS Virtual Connection Identifier
  local   GPRS NS Local UDP Port
  remote  GPRS NS Remote UDP Port
OsmoBSC(config-net-bts)# gprs nsvc 0 nsvci ?
  <0-65535>  GPRS NS VC Identifier
OsmoBSC(config-net-bts)# gprs nsvc 0 local ?
  udp  GPRS NS Local UDP Port
OsmoBSC(config-net-bts)# gprs nsvc 0 local udp ?
  port  GPRS NS Local UDP Port
OsmoBSC(config-net-bts)# gprs nsvc 0 local udp port ?
  <0-65535>  GPRS NS Local UDP Port Number
OsmoBSC(config-net-bts)# gprs nsvc 0 remote ?
  udp  GPRS NS Remote UDP Port
  ip   GPRS NS Remote IP Address
OsmoBSC(config-net-bts)# gprs nsvc 0 remote udp ?
  port  GPRS NS Remote UDP Port
OsmoBSC(config-net-bts)# gprs nsvc 0 remote udp port ?
  <0-65535>  GPRS NS Remote UDP Port Number
OsmoBSC(config-net-bts)# gprs nsvc 0 remote ip ?
  A.B.C.D   GPRS NS Remote IPv4 Address
  X:X::X:X  GPRS NS Remote IPv6 Address

OsmoBSC(config-net-bts)# ### NSVC sub-command params
OsmoBSC(config-net-bts)# gprs nsvc 0 nsvci 4242
OsmoBSC(config-net-bts)# gprs nsvc 1 nsvci 2424
OsmoBSC(config-net-bts)# show running-config
...
 bts 0
...
  gprs nsvc 0 nsvci 4242
  gprs nsvc 0 local udp port 0
  gprs nsvc 1 nsvci 2424
  gprs nsvc 1 local udp port 0
...
OsmoBSC(config-net-bts)# gprs nsvc 1 local udp port 23023
OsmoBSC(config-net-bts)# gprs nsvc 1 remote udp port 23032
OsmoBSC(config-net-bts)# gprs nsvc 1 remote ip 1.2.3.4
OsmoBSC(config-net-bts)# show running-config
...
 bts 0
...
  gprs nsvc 0 nsvci 4242
  gprs nsvc 0 local udp port 0
  gprs nsvc 1 nsvci 2424
  gprs nsvc 1 local udp port 23023
  gprs nsvc 1 remote ip 1.2.3.4
  gprs nsvc 1 remote udp port 23032
...

OsmoBSC(config-net-bts)# ### Disable secondary NSVC
OsmoBSC(config-net-bts)# gprs nsvc 1 remote udp port 0
OsmoBSC(config-net-bts)# show running-config
...
 bts 0
...
  gprs nsvc 0 nsvci 4242
  gprs nsvc 0 local udp port 0
  gprs nsvc 1 nsvci 2424
  gprs nsvc 1 local udp port 23023
...