diff --git a/pages/linux/avahi-browse.md b/pages/linux/avahi-browse.md index f220f6d0f..065b9936c 100644 --- a/pages/linux/avahi-browse.md +++ b/pages/linux/avahi-browse.md @@ -4,11 +4,15 @@ > Avahi is compatible with Bonjour (Zeroconf) found in Apple devices. > More information: . -- List all services available on the local network along with their addresses and ports while ignoring local ones: +- List services available on the local network along with their addresses and ports, ignoring ones on the local machine: `avahi-browse --all --resolve --ignore-local` -- List all domains: +- Quickly list services in the local network in SSV format for scripts: + +`avahi-browse --all --terminate --parsable` + +- List domains in the neighbourhood: `avahi-browse --browse-domains` diff --git a/pages/linux/avahi-resolve.md b/pages/linux/avahi-resolve.md new file mode 100644 index 000000000..1eea3d4af --- /dev/null +++ b/pages/linux/avahi-resolve.md @@ -0,0 +1,12 @@ +# avahi-resolve + +> Translate between host names and IP Addresses. +> More information: . + +- Resolve a local service to its IPv4: + +`avahi-resolve -4 --name {{service.local}}` + +- Resolve an IP to a hostname, verbosely: + +`avahi-resolve --verbose --address {{IP}}` diff --git a/pages/linux/smbnetfs.md b/pages/linux/smbnetfs.md new file mode 100644 index 000000000..9a24bc3d3 --- /dev/null +++ b/pages/linux/smbnetfs.md @@ -0,0 +1,8 @@ +# smbnetfs + +> Mount SMB shares interactively. +> More information: . + +- Make shares available at `mountpoint`: + +`smbnetfs {{mountpoint}}`