- Inside `fncWriteToConnection(self, inText, connInfo)` distinguish between `show` and `config` commands so as to use `send_command()` or `send_config_set()` respetively.
- This will help in the future to obatin show output data as JSON format.
- New parameter `pluginType`, either `show` or `config` according Netmiko's [documentation](https://ktbyers.github.io/netmiko/docs/netmiko/#netmiko.BaseConnection.send_command)
- Default set to `config`.
- New parameter `max_loops`: in conjuntion with `delay_factor` and `pluginType` helps in obtaining long output data.
- Default set to `5000`.
- `timeOut = max_loops * 0.2 * delay_factor`. See [this](https://github.com/ktbyers/netmiko/blob/develop/netmiko/utilities.py#L628) for explanation.
- Using `connInfo` as input paramter for all the internal methods of the connect class.
- Inside `routerLoginSsh()` using `fast_cli=False` inside the connection handler.
- Change of default cient type to `ssh`.