A way to fix it without disabling the DHCP server or disconnect it from
the network, is to SSH to the radio and edit the network settings
directly.

Enable remote logg in in some setting on the radio, use a shell (or
putty if you are on windows )

Google on internet and get familiar with the awkward vi editor (the
only one that is running on the radio)


This works on controller radio and Touch .

it is the /etc/network/interfaces file you got to edit.

And then you reboot the machine and it takes the new setings "reboot"
or power it of and apply power again.


Wifi or ethernet ?

Example Touch wired Ethernet.
Don't take any ip addresses literally they apply to my network you have
your own net, easiest way to find out is to run ipconfig or ifconfig and
se what dns or gateway you should use.
I use my router as DNS to have a central point where i can change that
if necessary you can of-course use your isp dns directly.


Code:
--------------------
    
  auto lo
  iface lo inet loopback
  
  auto eth0
  iface eth0 inet static
        address 192.168.1.15
        network 192.168.1.0
        broadcast 192.168.1.255
  netmask 255.255.255.0
        gateway 192.168.1.1
        dns 192.168.1.1
        up echo 'nameserver 192.168.1.1' > /etc/resolv.conf
  
--------------------



next example wifi on my radio , *"ssid" should be replaced with your
ssid name*
SSH is slow to respond over wifi so give it a couple of tries when
conecting 


Code:
--------------------
    
  auto lo
  iface lo inet loopback
  
  mapping eth1
  script /etc/network/if_mapping
  
  auto eth1=ssid
  iface ssid inet static
        address 192.168.1.8
        network 192.168.1.0
        broadcast 192.168.1.255
        netmask 255.255.255.0
        gateway 192.168.1.1
        dns 192.168.1.1
        up echo 'nameserver 192.168.1.1' > /etc/resolv.conf
  
  
--------------------


-- 
Mnyb

--------------------------------------------------------------------
Main hifi: Touch + CIA PS +MeridianG68J MeridianHD621 MeridianG98DH 2 x
MeridianDSP5200 MeridianDSP5200HC 2 xMeridianDSP3100 +Rel Stadium 3
sub.
Bedroom/Office: Boom
Kitchen: Touch + powered Fostex PM0.4
Misc use: Radio (with battery)
iPad 64gB wifi +3g with iPengHD & SqueezePad
(in storage SB3, reciever )
------------------------------------------------------------------------
Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=72803

_______________________________________________
Radio mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/radio

Reply via email to