diff options
author | Xiao Pan <gky44px1999@gmail.com> | 2023-11-17 02:47:34 -0800 |
---|---|---|
committer | Xiao Pan <gky44px1999@gmail.com> | 2023-11-17 02:47:34 -0800 |
commit | 060d33f682ef5c488c509ba40f1e5e557ef5e342 (patch) | |
tree | 3f6e1f07bb1f4e3cc821c7527f66a4a28db64c6f | |
parent | 220dad3b65cd3770f27269e5ef3233ce5c9f63ef (diff) |
update
-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 |