avahi服务,是符合zoreconf的标准的,zoreconf是苹果公司搞出来的一个零配置协议。自动生成可用IP地址的网络技术,不需要额外的手动配置和专属的配置服务器。
背景: 配置ip是个技术活,对于不懂it的人来讲,配置ip太难了。
特点:
需要安装:
avahi-daemon就是zeroconf的的开源实现。很多linux系统中自带该服务。
对于ubuntu:apt-get install avahi-daemon
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 --help
avahi-daemon -k //kill已经运行的avahi服务