I have a couple raspberry pi's acting as wireless access points. I can't seem to see my minidlna server using VLC on my phone which is connected to the wireless access points. I suspect there is some kind of broadcast that does not pass through the access point backwards but I have no idea what to look for. Something related to that port 8200 on the server.
Just fishing here for some ideas on what to research.
This is my /etc/hostapd/hostapd.conf file on my access point:
Code: Select all
interface=wlan0
driver=nl80211
ssid=MYSSID
hw_mode=g
channel=7
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=PASSWORD
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
Code: Select all
dhcp-mac=set:client_is_a_pi,B8:27:EB:*:*:*
dhcp-reply-delay=tag:client_is_a_pi,2
interface=wlan0
domain-needed
bogus-priv
dhcp-range=192.168.6.2,192.168.6.100,12h
Code: Select all
hostname
clientid
persistent
option rapid_commit
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
option ntp_servers
option interface_mtu
require dhcp_server_identifier
slaac private
interface wlan0
static ip_address=192.168.6.1/24
static routers=192.168.6.1
static domain_name_servers=192.168.2.82
Code: Select all
sudo iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Code: Select all
user=minidlna
media_dir=V,/home/pi/drive1/Movies
media_dir=P,/home/pi/drive1/Photos
media_dir=V,/home/pi/drive1/Videos
media_dir=A,/home/pi/Media
db_dir=/home/pi/PiDrive/minidlna
log_dir=/home/pi/PiDrive/minidlna
port=8200
friendly_name=PiHome
serial=681019810597110
inotify=yes
album_art_names=Cover.jpg/cover.jpg/AlbumArtSmall.jpg/albumartsmall.jpg
album_art_names=AlbumArt.jpg/albumart.jpg/Album.jpg/album.jpg
album_art_names=Folder.jpg/folder.jpg/Thumb.jpg/thumb.jpg
notify_interval=895
PPi.