Question : executing commands after telnetting to a server on listening defined port

The server is listening on port 7777, for example, and there are many self-defined commands. When I execute the sequences of the commands manually it works fine i.e:
1. telnet to myserver with port 7777 then press Enter
2. execute authentication command (login) to the server (successfully)
3. execute the predefined command, the result output (response from the server) is displayed (successfully)

I want to automate this task by deciding to write a task based on Bash shell script programming. I fail to achieve my goal with the scripts as shown in code snippet below. Please check my codes and have your comments. Thanks
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
#================
#First Coding
#=================
#!/bin/bash
 
SRV_HOST="myserver"
SRV_PORT="7777"
SRV_USER="SrvUser"
SRV_PASSWORD="SrvPassword"
 
telnet $SRV_HOST $SRV_PORT
command1
command2
 
#================
#Second Coding
#================
#!/bin/bash
 
SRV_HOST="myserver"
SRV_PORT="7777"
SRV_USER="SrvUser"
SRV_PASSWORD="SrvPassword"
 
telnet $SRV_HOST $SRV_PORT <<-EOF
command1
command2
EOF
Open in New Window Select All

Answer : executing commands after telnetting to a server on listening defined port

I found a command to successfully connect to the remote server using specified port and execute the commands. Please refer to the code snippet
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
#!/bin/bash
set -o verbose
shopt -o -s no unset
 
SRVT_HOS="myserver"
SRV_PORT="7777"
SRV_USER="SrvUser"
SRV_PASSWORD="SrvPassword"
 
printf "Connecting to host $SRV_HOST\r\n"
exec 3<> /dev/tcp/$SRVT_HOS/$SRV_PORT   #Number 3 is the file descriptor (fd)
printf "command1\r\n" >&3
printf "command2\r\n" >&3
 
#To display the output when getting response from the server
while read LINE <&3 ; do
    printf "%s\n" "$LINE"
done
 
exec 3>&-       #Close fd 3
Open in New Window Select All
Random Solutions  
 
programming4us programming4us