123456789101112131415161718 |
- from OLTBase import OLTBase
- class Furukawa(OLTBase):
- def __init__(self, model, ssh):
- OLTBase.__init__(self, model, ssh)
- def get_expected_name(self):
- return "login:"
- def get_expected_password(self):
- return "Password:"
- def get_write_exit(self):
- return "exit"
- def run_enable(self):
- return True
|