Change in osmo-sgsn[master]: gbproxy: use ns2 vty2

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

lynxis lazus gerrit-no-reply at lists.osmocom.org
Mon Jan 4 16:27:41 UTC 2021


lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-sgsn/+/21819 )

Change subject: gbproxy: use ns2 vty2
......................................................................

gbproxy: use ns2 vty2

The new gprs_ns2 vty2 support ip-sns and reorganize the
network service configuration

Depends: I163279cf57e84198dc8c53e1c109f5a9474670e9 (libosmocore)
Change-Id: I2a18dcf035f1fc7304a0c7c7c83b5e8e15429d2b
---
M doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg
M doc/examples/osmo-gbproxy/osmo-gbproxy-pool.cfg
M doc/examples/osmo-gbproxy/osmo-gbproxy.cfg
M src/gbproxy/gb_proxy_main.c
4 files changed, 18 insertions(+), 37 deletions(-)

Approvals:
  daniel: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg b/doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg
index c1dcfe7..e30b9f7 100644
--- a/doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg
+++ b/doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg
@@ -22,12 +22,11 @@
  no login
 !
 ns
- nse 666 nsvci 666
- nse 666 remote-role sgsn
-! nse 666 encapsulation framerelay-gre
- nse 666 remote-ip 127.0.0.1
- nse 666 remote-port 23001
-! nse 666 fr-dlci 666
+ bind udp local
+  listen 127.0.0.1 23000
+  accept-ipaccess
+ nse 666
+  nsvc ipa local 127.0.0.1 23001 nsvci 666
  timer tns-block 3
  timer tns-block-retries 3
  timer tns-reset 3
@@ -35,9 +34,6 @@
  timer tns-test 30
  timer tns-alive 3
  timer tns-alive-retries 10
- encapsulation udp local-port 23000
- encapsulation udp local-ip 127.0.0.1
-! encapsulation framerelay-gre enabled 1
 gbproxy
  sgsn nsei 666
  core-mobile-country-code 666
diff --git a/doc/examples/osmo-gbproxy/osmo-gbproxy-pool.cfg b/doc/examples/osmo-gbproxy/osmo-gbproxy-pool.cfg
index df765c0..a5e8967 100644
--- a/doc/examples/osmo-gbproxy/osmo-gbproxy-pool.cfg
+++ b/doc/examples/osmo-gbproxy/osmo-gbproxy-pool.cfg
@@ -15,16 +15,13 @@
  nri add 2
  nri add 12
 ns
- nse 101 nsvci 101
- nse 101 remote-role sgsn
- nse 101 encapsulation udp
- nse 101 remote-ip 192.168.100.239
- nse 101 remote-port 7777
- nse 102 nsvci 102
- nse 102 remote-role sgsn
- nse 102 encapsulation udp
- nse 102 remote-ip 192.168.100.239
- nse 102 remote-port 7778
+ bind udp local
+  listen 127.0.0.100 23000
+  accept-ipaccess
+ nse 101
+  nsvc ipa local 192.168.100.239 7777 nsvci 101
+ nse 102
+  nsvc ipa local 192.168.100.239 7778 nsvci 102
  timer tns-block 3
  timer tns-block-retries 3
  timer tns-reset 3
@@ -32,7 +29,3 @@
  timer tns-test 30
  timer tns-alive 3
  timer tns-alive-retries 10
- encapsulation framerelay-gre enabled 0
- encapsulation framerelay-gre local-ip 0.0.0.0
- encapsulation udp local-ip 127.0.0.100
- encapsulation udp local-port 23000
diff --git a/doc/examples/osmo-gbproxy/osmo-gbproxy.cfg b/doc/examples/osmo-gbproxy/osmo-gbproxy.cfg
index 5cabc6d..0a2c16e 100644
--- a/doc/examples/osmo-gbproxy/osmo-gbproxy.cfg
+++ b/doc/examples/osmo-gbproxy/osmo-gbproxy.cfg
@@ -8,11 +8,11 @@
 gbproxy
 sgsn nsei 101
 ns
- nse 101 nsvci 101
- nse 101 remote-role sgsn
- nse 101 encapsulation udp
- nse 101 remote-ip 192.168.100.239
- nse 101 remote-port 7777
+ bind udp local
+  listen 127.0.0.100 23000
+  accept-ipaccess
+ nse 101
+  nsvc ipa local 192.168.100.239 7777 nsvci 101
  timer tns-block 3
  timer tns-block-retries 3
  timer tns-reset 3
@@ -20,7 +20,3 @@
  timer tns-test 30
  timer tns-alive 3
  timer tns-alive-retries 10
- encapsulation framerelay-gre enabled 0
- encapsulation framerelay-gre local-ip 0.0.0.0
- encapsulation udp local-ip 127.0.0.100
- encapsulation udp local-port 23000
diff --git a/src/gbproxy/gb_proxy_main.c b/src/gbproxy/gb_proxy_main.c
index c660ede..37afb5e 100644
--- a/src/gbproxy/gb_proxy_main.c
+++ b/src/gbproxy/gb_proxy_main.c
@@ -289,7 +289,7 @@
 		exit(1);
 	}
 
-	gprs_ns2_vty_init(gbcfg->nsi, NULL);
+	gprs_ns2_vty2_init(gbcfg->nsi);
 	logging_vty_add_deprecated_subsys(tall_sgsn_ctx, "bssgp");
 	gprs_ns2_dynamic_create_nse(gbcfg->nsi, true);
 
@@ -301,10 +301,6 @@
 		exit(2);
 	}
 
-	gprs_ns2_vty_create();
-
-	/* TODO: Warn if we create a gbproxy_nse for an NSEI which we don't have a bind */
-
 	/* start telnet after reading config for vty_get_bind_addr() */
 	rc = telnet_init_dynif(tall_sgsn_ctx, NULL,
 			       vty_get_bind_addr(), OSMO_VTY_PORT_GBPROXY);

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-sgsn/+/21819
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-Change-Id: I2a18dcf035f1fc7304a0c7c7c83b5e8e15429d2b
Gerrit-Change-Number: 21819
Gerrit-PatchSet: 6
Gerrit-Owner: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann at sysmocom.de>
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-Reviewer: lynxis lazus <lynxis at fe80.eu>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210104/2a26986e/attachment.htm>


More information about the gerrit-log mailing list