找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 885|回复: 5

出现 ERR_UNSAFE_PORT

[复制链接]

20

主题

40

回帖

290

积分

中级会员

积分
290
发表于 2023-1-10 16:23:01 | 显示全部楼层 |阅读模式
网址为 http://192.168.xx.xx:10080/ 的网页可能暂时无法连接,或者它已永久性地移动到了新网址。
ERR_UNSAFE_PORT


正在使用的是最新的v5版本, 访问我的一个内网页面,出现这个提示. v4版本的就没问题
回复

使用道具 举报

20

主题

40

回帖

290

积分

中级会员

积分
290
 楼主| 发表于 2023-1-10 16:31:48 | 显示全部楼层
另外好像新版cent还不支持ftp页面了...
回复

使用道具 举报

8

主题

7422

回帖

2万

积分

超级版主

(^^ゞ

积分
20939
发表于 2023-1-10 18:36:49 | 显示全部楼层
1. 谷歌从 91 内核版本起默认阻止 10080 端口(Feature: Block HTTP port 10080)。可以选择更换内网服务使用的端口号,或者在 chrome://settings/cbOtherOptions 的启动命令行中添加 --explicitly-allowed-ports=10080 然后重启浏览器。

2. 谷歌从 95 内核版本起已经删除对 FTP URL 的支持(Feature: Remove FTP support (Removed)),建议使用 FileZilla、WinSCP 等 FTP 客户端访问 FTP 站点。
¯\(°_o)/¯
回复

使用道具 举报

20

主题

40

回帖

290

积分

中级会员

积分
290
 楼主| 发表于 2023-1-11 20:44:42 | 显示全部楼层
S8F8ry 发表于 2023-1-10 18:36
1. 谷歌从 91 内核版本起默认阻止 10080 端口(Feature: Block HTTP port 10080)。可以选择更换内网服务使用 ...

万恶的谷狗
回复

使用道具 举报

匿名  发表于 2023-1-15 21:01:01
chrome://settings/cbOtherOptions#:~:text=启动命令行 中,添加 --explicitly-allowed-ports=10080 多个端口用英文逗号隔开 --explicitly-allowed-ports=10080,6666,6667

目前最新的谷歌认为不安全端口
  1. namespace {
  2. // The general list of blocked ports. Will be blocked unless a specific
  3. // protocol overrides it. (Ex: ftp can use port 21)
  4. // When adding a port to the list, consider also adding it to kAllowablePorts,
  5. // below.
  6. const int kRestrictedPorts[] = {
  7.     1,      // tcpmux
  8.     7,      // echo
  9.     9,      // discard
  10.     11,     // systat
  11.     13,     // daytime
  12.     15,     // netstat
  13.     17,     // qotd
  14.     19,     // chargen
  15.     20,     // ftp data
  16.     21,     // ftp access
  17.     22,     // ssh
  18.     23,     // telnet
  19.     25,     // smtp
  20.     37,     // time
  21.     42,     // name
  22.     43,     // nicname
  23.     53,     // domain
  24.     69,     // tftp
  25.     77,     // priv-rjs
  26.     79,     // finger
  27.     87,     // ttylink
  28.     95,     // supdup
  29.     101,    // hostriame
  30.     102,    // iso-tsap
  31.     103,    // gppitnp
  32.     104,    // acr-nema
  33.     109,    // pop2
  34.     110,    // pop3
  35.     111,    // sunrpc
  36.     113,    // auth
  37.     115,    // sftp
  38.     117,    // uucp-path
  39.     119,    // nntp
  40.     123,    // NTP
  41.     135,    // loc-srv /epmap
  42.     137,    // netbios
  43.     139,    // netbios
  44.     143,    // imap2
  45.     161,    // snmp
  46.     179,    // BGP
  47.     389,    // ldap
  48.     427,    // SLP (Also used by Apple Filing Protocol)
  49.     465,    // smtp+ssl
  50.     512,    // print / exec
  51.     513,    // login
  52.     514,    // shell
  53.     515,    // printer
  54.     526,    // tempo
  55.     530,    // courier
  56.     531,    // chat
  57.     532,    // netnews
  58.     540,    // uucp
  59.     548,    // AFP (Apple Filing Protocol)
  60.     554,    // rtsp
  61.     556,    // remotefs
  62.     563,    // nntp+ssl
  63.     587,    // smtp (rfc6409)
  64.     601,    // syslog-conn (rfc3195)
  65.     636,    // ldap+ssl
  66.     989,    // ftps-data
  67.     990,    // ftps
  68.     993,    // ldap+ssl
  69.     995,    // pop3+ssl
  70.     1719,   // h323gatestat
  71.     1720,   // h323hostcall
  72.     1723,   // pptp
  73.     2049,   // nfs
  74.     3659,   // apple-sasl / PasswordServer
  75.     4045,   // lockd
  76.     5060,   // sip
  77.     5061,   // sips
  78.     6000,   // X11
  79.     6566,   // sane-port
  80.     6665,   // Alternate IRC [Apple addition]
  81.     6666,   // Alternate IRC [Apple addition]
  82.     6667,   // Standard IRC [Apple addition]
  83.     6668,   // Alternate IRC [Apple addition]
  84.     6669,   // Alternate IRC [Apple addition]
  85.     6697,   // IRC + TLS
  86.     10080,  // Amanda
  87. };

  88. by https ://chromium .googlesource .com/chromium/src.git/+/refs/heads/main/net/base/port_util.cc#27
复制代码
回复

使用道具

44

主题

1365

回帖

5293

积分

论坛元老

积分
5293
发表于 2023-1-16 02:22:53 | 显示全部楼层
游客 171.109.89.x 发表于 2023-1-15 21:01
chrome://settings/cbOtherOptions#:~:text=启动命令行 中,添加 --explicitly-allowed-ports=10080 多个端 ...

看来 骨骼已不安全为借口, 封禁很多东西, 屡试不爽...
回复

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

Archiver|手机版|小黑屋|百分浏览器论坛

GMT+8, 2024-11-5 19:41 , Processed in 0.016649 second(s), 18 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表