123456789101112131415161718192021 |
- from OLTBase import OLTBase
- class ZTE(OLTBase):
- def __init__(self, model, ssh):
- OLTBase.__init__(self, model, ssh)
- def get_expected_password(self):
- return "assword:"
- def run_enable_password(self):
- return False
- def get_expected_initial(self):
- return "#"
- def get_write_exit_confirmation(self):
- return "y"
- def get_expected_exit(self):
- return "[yes/no]:"
|