I see that it works via wifi, but can it be configured to work via the internet, so I can use my phone to access my music while at work?
avahi-browse -rt _touch-able._tcp
= wlan0 IPv4 (16 character hex ID#1) _touch-able._tcp local hostname = [XXXX.local] address = [192.168.X.XX] port = [3689] txt = ["Ver=131077" "iV=196618" "DvTy=iTunes" "DvSv=2880" "iCSV=65539" "OSsi=0x1F7" "CtlN=(Library Name)" "DbId=(16 character hex ID#2)" "txtvers=1"]
ssh -C -L :3689:127.0.0.1:3689 -N (username)@(host) &
avahi-publish -s (hex id #1) _touch-able._tcp 3689 txtvers=1 DbId=(hex id #2) CtlN='(Library Name)' OSsi=0x1F7 iCSV=65539 DvSv=2880 DvTy=iTunes iV=196618 Ver=131077
#!/bin/sh ssh -C -L :3689:127.0.0.1:3689 -N (username)@(host) & trap "kill $!" 0 1 2 15 avahi-publish -s (hex id #1) _touch-able._tcp 3689 txtvers=1 DbId=(hex id #2) CtlN='(Library Name)' OSsi=0x1F7 iCSV=65539 DvSv=2880 DvTy=iTunes iV=196618 Ver=131077