You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
If a site is not using 23 for the TN3270 port they will launch MVD and see a failing 3270.
We do allow the port to be overridden in the zowe-install.yaml, however the default is 23 and people may not understand where and how to change it.
Solution:
We do a netstat to detect the z/OSMF port already, so we could do a netstat to determine the TN3270 listener port and have an auto setting in the zowe-install.yaml
# Ports for the TN3270 and the VT terminal to connect to
terminals:
sshPort=auto
telnetPort=auto
# security=tls
If the value is auto we can netstat looking for
TN3270 00000025 Listen
Local Socket: ::..23
Foreign Socket: ::..0
and for
SSHD1 00000053 Listen
Local Socket: 0.0.0.0..22
Foreign Socket: 0.0.0.0..0
If we fail to determine the ports using auto we should default to 23 and 22 (as that is what most sites have) and also echo to the console that we were unable to determine the defaults.
The installer should echo to the log that auto was used and the successful ports allocated for debugging purposes
The text was updated successfully, but these errors were encountered:
I am not sure, how reliable is the way of getting the port numbers. Is it possible to have config elsewhere? Another syntax breaking the grep + awk? Maybe extra variable not needed?
Problem:
If a site is not using 23 for the TN3270 port they will launch MVD and see a failing 3270.
We do allow the port to be overridden in the zowe-install.yaml, however the default is 23 and people may not understand where and how to change it.
Solution:
We do a netstat to detect the z/OSMF port already, so we could do a netstat to determine the TN3270 listener port and have an auto setting in the zowe-install.yaml
If the value is auto we can netstat looking for
and for
If we fail to determine the ports using auto we should default to 23 and 22 (as that is what most sites have) and also echo to the console that we were unable to determine the defaults.
The installer should echo to the log that auto was used and the successful ports allocated for debugging purposes
The text was updated successfully, but these errors were encountered: