当前位置: 首页 > 工具软件 > Avahi > 使用案例 >

avahi服务的使用

斜俊
2023-12-01

avahi服务的使用

avahi服务,是符合zoreconf的标准的,zoreconf是苹果公司搞出来的一个零配置协议。自动生成可用IP地址的网络技术,不需要额外的手动配置和专属的配置服务器。

背景: 配置ip是个技术活,对于不懂it的人来讲,配置ip太难了。
特点

  • 动态分配ip
  • 可以使用域名访问
  • 域名只能再局域网内使用

需要安装

  • 苹果公司的Bonjour服务,安装前往苹果官网。对没错就是卖iPhone手机那家公司。

avahi-daemon

avahi-daemon就是zeroconf的的开源实现。很多linux系统中自带该服务。
对于ubuntu:apt-get install avahi-daemon

avahi-daemon的配置

添加/etc/avahi/services/ssh.service

hhh@ubuntu:/etc/avahi$ tree
.
├── avahi-autoipd.action
├── avahi-daemon.conf
├── hosts				//有可能是:在不连到局域网的路由器上时,自动分配ip和域名(猜测)
└── services           //默认这个目录下是没有文件的,需要添加ssh.service的服务

在services目录下添加ssh.service文件:

<?xml version="1.0" standalone='no'?><!--*-nxml-*-->
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>

  <name replace-wildcards="yes">%h</name>

  <service>
    <type>_http._tcp</type>
    <port>5000</port>
    <txt-record>llrp:5084</txt-record>
    <txt-record>ws:8888</txt-record>
  </service>
</service-group>

avahi-daemon命令

avahi-daemon --help
avahi-daemon -k          //kill已经运行的avahi服务
 类似资料: