diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/services | 3 | ||||
-rw-r--r-- | etc/ssh/ssh_config.d/my_ssh_config.conf | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/etc/services b/etc/services index c6519fd7..c9671fd7 100644 --- a/etc/services +++ b/etc/services @@ -11510,4 +11510,7 @@ nusdp-disc 49001/udp inspider 49150/tcp # my services qrcp 49153/tcp +# My ISP verizon block incomming to gateway port 22. So I need to use another port to ssh into my home server. +# https://www.reddit.com/r/verizon/comments/to1q43/verizon_5g_home_internet_blocking_ssh_service_port/ +ssh-isp 49812/tcp iperf3 53497/tcp diff --git a/etc/ssh/ssh_config.d/my_ssh_config.conf b/etc/ssh/ssh_config.d/my_ssh_config.conf new file mode 100644 index 00000000..a5f1fca3 --- /dev/null +++ b/etc/ssh/ssh_config.d/my_ssh_config.conf @@ -0,0 +1,2 @@ +Host flylightning.xyz + Port ssh-isp |