(20250212) Started a new class (util) that handles MikroTik config. in async mode, and started implementing that in the PPPoE-1000 controller. I can now configure and roll back the first three steps. Long way to go :')

This commit is contained in:
2025-02-12 19:05:29 +05:30
parent 6e65de9dfc
commit 02dd675f83
8 changed files with 409 additions and 607 deletions
+1 -1
View File
@@ -20,8 +20,8 @@ if [[ $SELECTION -gt 0 && $SELECTION -le ${#SERVERS[@]} ]]; then
SELECTED_SERVER=${SERVERS[$((SELECTION - 1))]}
# Ask the username and target port no. on the server::
read -rp "Your username on the server ..... : " USER
read -rp "The target port no. ............. : " PORT
read -rp "Your username on the server ..... : " USER
# Run the command:
ssh -p "$PORT" "$USER@$SELECTED_SERVER"