linux – Netcat无法在侦听模式下启动

前端之家收集整理的这篇文章主要介绍了linux – Netcat无法在侦听模式下启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用CentOS 6.7(最终)系统,当我尝试在侦听模式下运行nc时,它会打印以下内容
  1. # nc -l 1234
  2. nc: Protocol not available

端口没有绑定.我也尝试了其他端口号.
似乎已经报告了这个错误https://access.redhat.com/solutions/1753753.不幸的是它不是很详细.

套餐信息:

  1. Name : nc
  2. Arch : x86_64
  3. Version : 1.84
  4. Release : 24.el6

还有其他我需要尝试的东西吗?

解决方法

我遇到了同样的问题.你可以这样解决
  1. # Removes the old package
  2. yum erase nc
  3.  
  4. # Manually downloads the working package from the Official Repository
  5. wget http://vault.centos.org/6.6/os/x86_64/Packages/nc-1.84-22.el6.x86_64.rpm
  6.  
  7. # Installs the package
  8. rpm -iUv nc-1.84-22.el6.x86_64.rpm

请注意,该软件包适用于x86_64(64位).如果你需要i386(32位),那么正确的是:

  1. wget http://vault.centos.org/6.6/os/i386/Packages/nc-1.84-22.el6.i686.rpm

猜你在找的Linux相关文章