aboutsummaryrefslogtreecommitdiffstats
path: root/hlr_mgmt/telnet_backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'hlr_mgmt/telnet_backend.py')
-rw-r--r--hlr_mgmt/telnet_backend.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/hlr_mgmt/telnet_backend.py b/hlr_mgmt/telnet_backend.py
index c2c5dc0..cc5c5e6 100644
--- a/hlr_mgmt/telnet_backend.py
+++ b/hlr_mgmt/telnet_backend.py
@@ -114,6 +114,13 @@ class telnet_backend(object):
def get_timeslot_info(self, bts, timeslot):
return self.execute("show timeslot " + bts + " 0 " + timeslot)
+
+ def set_bts_description(self, bts, description):
+ self.execute('configure terminal')
+ self.execute('network')
+ self.execute('bts ' + bts)
+ self.execute('description ' + description)
+ return self.save_config()
## OpenSGSN Commands ##