Furukawa.py 357 B

123456789101112131415161718
  1. from OLTBase import OLTBase
  2. class Furukawa(OLTBase):
  3. def __init__(self, model, ssh):
  4. OLTBase.__init__(self, model, ssh)
  5. def get_expected_name(self):
  6. return "Login:"
  7. def get_expected_password(self):
  8. return "Password:"
  9. def get_write_exit(self):
  10. return "quit"
  11. def run_enable(self):
  12. return True