Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2022-01-02 Thread bstrulo


I just had cause to use this and came up with a few hurdles I had to
workaround - posting in case this helps anyone.

So, the reason I needed to use it was because I wanted to set up
"bridging" on my Receiver.  The Receiver is on the WiFi but I have an
Ethernet-only device (Raspberry Pi) I wanted to hang off it.  This can
be done but only if you can switch on the bridging.

My first attempt was to use the compiled program found at
http://slim2lirc.myown.mailcan.com/udap_shell_1_0_0.exe.   However, this
doesn't work - it gives lots of errors when run.  I managed to track
down what I think is the problem: it uses ipconfig on Windows to find
the local IP Address.  However, the program assumes it is called "IP
Address" whereas for some time now (since Vista I think!) it is actually
now called "IPv4 Address" so that doesn't work.

So I think you have to use the source Perl version.  I got that down but
I had a lot of trouble installing the correct Perl pre-requisites on my
Windows machine.  I could get ActiveState Perl but getting the
additional modules didn't seem to work for me.  I think this is because
the cpan command assumes you have gmake and gcc installed and maybe
other things too.   There might be a way to get that all to work but I
gave up.

Instead I ran it on a Linux box and that was much easier.  Essentially
all I had to was this:


Code:

sudo apt install build-essential
  sudo cpan install Log::StdLog Term::Shell Class::Accessor 
IO::Interface::Simple
  git clone https://github.com/robinbowes/net-udap.git
  cd net-udap
  ./scripts/udap_shell.pl



There was still some further confusion, however.  I have an SB3, the
SBR, and also a Radio.  All three seem to behave differently and the
Radio in particular seems to cause errors.  The SBR seems to be only
contactable when it is in init mode (red flashing slowly) and in that
mode it seems like it is no longer on the house wifi so it's no longer
accessible.  I think in that mode you need to use the Ethernet (or it's
own special direct wifi).  The SB3 by contrast is easy to discover and
access - but that's also not needed since it is configurable via the
remote.

The answer for me, anyway, was to connect the SBR directly to the PC via
Ethernet and then I could get the config working and with no chance of
confusion with the other Squeezies on the network.

Hope this is helpful to someone.

Ben



bstrulo's Profile: http://forums.slimdevices.com/member.php?userid=15997
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-09-27 Thread Thomas8675309


Hi, all.  Just used the UDAP tool for the first time in about four
years.  I wanted to post the steps I went thru (probably restating
what's in prior posts, including in wcndave's helpful post from last
year, which sadly I didn't see until after I figured out most of this)
to get everything working successfully.

Did this from a Debian system, but should also work from Ubuntu

# Download the tool

Code:

wget https://github.com/robinbowes/net-udap/archive/refs/heads/master.zip


# Extract code and cd into directory

Code:

unzip master.zip
  cd [unzipped directory]


# Make sure some necessary dependencies are satisfied

Code:

sudo apt install gcc make cpanminus
  sudo cpanm Log::StdLog
  sudo cpanm Term::Shell
  sudo cpanm Class::Accessor
  sudo cpanm IO::Interface::Simple


# Assign the receiver an address in the DHCP server (i.e., your
router).

# Powercycle the receiver, 
# then reset it by pressing and holding the front button for 5 seconds.
# Front light should flash red, showing it is in init mode.

# start udap

Code:

scripts/udap_shell.pl --local-address [receiver ip address you assigned]


# Have udap find the receiver

Code:

UDAP> discover
  UDAP> list


# Choose the receiver

Code:

UDAP> conf 1
  UDAP [1] (squeezebox ...)> list


# Set the necessary parameters, e.g.:

Code:

UDAP [1] (squeezebox ...)> set server_address=[Logitech Media Server ip 
address] 
  UDAP [1] (squeezebox ...)> set squeezecenter_address=[Logitech Media Server 
address again] 
  UDAP [1] (squeezebox ...)> set interface=1 # [for wired] 
  UDAP [1] (squeezebox ...)> set lan_ip_mode=1 # [to use DHCP]
  UDAP [1] (squeezebox ...)> set hostname=[DHCP hostname for the receiver]


# Confirm the data has changed.

Code:

UDAP [1] (squeezebox ...)> list


# Save the data and reset

Code:

UDAP [1] (squeezebox ...)> save_data
  UDAP [1] (squeezebox ...)> reset
  UDAP [1] (squeezebox ...)> quit
  UDAP> quit



Logitech Media Server should now list the receiver under the hostname
you set.

Best regards.

Tom

P.S. Thanks again to Robin for making this available.  Sending another
donation.



Thomas8675309's Profile: http://forums.slimdevices.com/member.php?userid=23271
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-08-30 Thread efluon


sadly this does not work any more for me. after this summer vacation i
switched on the power and everytime i try to connect at the save_data
step (i.e. after selecting the receiver and setting the server
addresses) there is an error message:


Code:

info: *** Broadcasting set_data message to MAC address 00:04:20:17:93:4b on 
255.255.255.255
  ucp_method set_data callback not implemented yet at 
/home//squeeze-receiver-setup/1.0.x/scripts/../src/   
Net-UDAP/lib/Net/UDAP.pm line 292.
  Raw msg:
  00 01 02 03 04 05 06 07 - 08 09 0A 0B 0C 0D 0E 0F  0123456789ABCDEF
  
    00 02 00 00 00 00 00 00 - 00 01 00 04 20 17 93 4B   ..K
  0010  00 01 C0 01 00 00 01 00 - 01 00 06 00 1A   .
  info:   set_data response received from 00:04:20:17:93:4b
  


when I look at the line in UDAP.pm it seems that is only the message
wrapping, so the problem is rather in the content of the raw message. 

Is this a Perl version problem (I updated my system somewhat recently
and Perl is now v5.24.1), or did I break some other dependency? My Linux
Fu has degraded a lot over the years..



efluon's Profile: http://forums.slimdevices.com/member.php?userid=22135
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-06-25 Thread 4NKoen


wcndave wrote: 
> Thanks for the response and for looking!
> 
> I did try that now (AV said it was safe), however got errors when
> running it
> 
> > 
Code:

  >   > UDAP> d
  > info: *** Broadcasting adv_discovery message to MAC address 
00:00:00:00:00:00 on 255.255.255.255
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  > Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm 
line 296
  > Use of uninitialized value in concatenation (.) or string at 
/PerlApp/Net/UDAP.pm line 297,  line 1.
  > info:   adv_discovery response received from
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  > Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm 
line 358
  > mac not found in msg at /PerlApp/Net/UDAP/Shell.pm line 156
  > UDAP>

> > 
> 
> Then I found an old post where I had done this 6 years ago, using
> tortoise and some other tools, but no details.
> 
> I tried the ubuntu code in a docker container, however I think the
> network structure doesn't work, as it didn't find it.
> 
> So then I found an old netbook with Lubuntu on it, and that worked.
> 
> I had to modify the steps from @cmmh somewhat.
> 
> > 
Code:

  >   > sudo bash
  > git clone https://github.com/robinbowes/net-udap.git
  > cd net-udap
  > apt install cpanminus
  > apt install make
  > apt install gcc
  > cpanm Log::StdLog
  > cpanm Term::Shell
  > cpanm Class::Accessor
  > cpanm IO::Interface::Simple
  > scripts/udap_shell.pl

> > 
> 
> I am going to have to bookmark this for future!
> 
> Thanks again

I'm a bit late to the party but I'm currently making changes to my home
network setup, meaning I have to modify the network configuration in my
trusty old SBR almost a decade after the initial conf. I'm running the
Windows udap_shell_1_0_0.exe and I'm getting the same errors as above. I
tried the discover and list commands and they give me OK responses.
However I'm a bit hesitant to do a conf with these errors, I don't
understand what they mean. Can I just push ahead and do a conf for my
new network setup? Do I need to fix these errors first and if so, how?

Thanks in advance for any info!



4NKoen's Profile: http://forums.slimdevices.com/member.php?userid=71880
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-06-23 Thread 4NKoen


robinbowes wrote: 
> Hi,
> 
> It's now at https://github.com/robinbowes/net-udap
> 
> R.

Great, thank you :) !



4NKoen's Profile: http://forums.slimdevices.com/member.php?userid=71880
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-06-23 Thread robinbowes


4NKoen wrote: 
> I've been trying for days but I keep getting timeouts for the
> projects.robinbowes.com website... Has it been discontinued? Is there
> any other online resource documenting this great tool?

Hi,

It's now at https://github.com/robinbowes/net-udap

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://paypal.me/RobinBowes

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2021-06-22 Thread 4NKoen


I've been trying for days but I keep getting timeouts for the
projects.robinbowes.com website... Has it been discontinued? Is there
any other online resource documenting this great tool?



4NKoen's Profile: http://forums.slimdevices.com/member.php?userid=71880
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-05 Thread wcndave


robinbowes wrote: 
> I really should revisit this and update the instructions. Sadly, not
> much time at the moment, receivers all on storage, and no Windows or
> Linux machines at home just now.
> 
> One day...I'm just very grateful you made it, still host it, and it works! 

Sent from my ONEPLUS A5010 using Tapatalk



2 x Booms, 2 x Players, 2 x Touch, 4 x Joggler, LMS 7.7.6-113 running on
Synology D712+

wcndave's Profile: http://forums.slimdevices.com/member.php?userid=29445
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-05 Thread robinbowes


I really should revisit this and update the instructions. Sadly, not
much time at the moment, receivers all on storage, and no Windows or
Linux machines at home just now.

One day...



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://paypal.me/RobinBowes

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-04 Thread wcndave


Also, forgot to add that the commands are documented here, rather than
on github.

http://projects.robinbowes.com/Net-UDAP/trac/wiki/GettingStarted



2 x Booms, 2 x Players, 2 x Touch, 4 x Joggler, LMS 7.7.6-113 running on
Synology D712+

wcndave's Profile: http://forums.slimdevices.com/member.php?userid=29445
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-04 Thread wcndave


Paul Webster wrote: 
> There is a link to a Windows version via
> http://wiki.linuxmce.org/index.php/SlimDevices_/_Logitech_Squeezebox
> It does download but I have not risked running it - make sure you have
> up to date antivirus just in case.
> 
> I remember someone else creating a Windows UDAP tool (not using Perl)
> but I have not been able to find the thread here.

Thanks for the response and for looking!

I did try that now (AV said it was safe), however got errors when
running it


Code:

UDAP> d
  info: *** Broadcasting adv_discovery message to MAC address 00:00:00:00:00:00 
on 255.255.255.255
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm line 
296
  Use of uninitialized value in concatenation (.) or string at 
/PerlApp/Net/UDAP.pm line 297,  line 1.
  info:   adv_discovery response received from
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm line 
358
  mac not found in msg at /PerlApp/Net/UDAP/Shell.pm line 156
  UDAP>



Then I found an old post where I had done this 6 years ago, using
tortoise and some other tools, but no details.

I tried the ubuntu code in a docker container, however I think the
network structure doesn't work, as it didn't find it.

So then I found an old netbook with Lubuntu on it, and that worked.

I had to modify the steps from @cmmh somewhat.


Code:

sudo bash
  git clone https://github.com/robinbowes/net-udap.git
  cd net-udap
  apt install cpanminus
  apt install make
  apt install gcc
  cpanm Log::StdLog
  cpanm Term::Shell
  cpanm Class::Accessor
  cpanm IO::Interface::Simple
  scripts/udap_shell.pl



I am going to have to bookmark this for future!

Thanks again



2 x Booms, 2 x Players, 2 x Touch, 4 x Joggler, LMS 7.7.6-113 running on
Synology D712+

wcndave's Profile: http://forums.slimdevices.com/member.php?userid=29445
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-04 Thread Paul Webster


There is a link to a Windows version via
http://wiki.linuxmce.org/index.php/SlimDevices_/_Logitech_Squeezebox
It does download but I have not risked running it - make sure you have
up to date antivirus just in case.

I remember someone else creating a Windows UDAP tool (not using Perl)
but I have not been able to find the thread here.



Paul Webster
http://dabdig.blogspot.com
author of \"now playing\" plugins covering radio france (fip etc), kcrw,
supla finland, abc australia, cbc/radio-canada and rte ireland

Paul Webster's Profile: http://forums.slimdevices.com/member.php?userid=105
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-10-04 Thread wcndave


The windows exe file doesn't seem to be hosted on gitgub, and the wiki
links etc on there don't work.  Has this been abandoned now?



2 x Booms, 2 x Players, 2 x Touch, 4 x Joggler, LMS 7.7.6-113 running on
Synology D712+

wcndave's Profile: http://forums.slimdevices.com/member.php?userid=29445
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-04-13 Thread kpfeif


Indeed, that just saved me, too!  So glad I'm able to use the Duet
receiver again.

-Kris



kpfeif's Profile: http://forums.slimdevices.com/member.php?userid=9991
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-02-19 Thread sebp


Thanks a lot for that, cmmh!
It just saved my day (Transporter died and had to pull a Receiver as a
replacement.)



'Last.fm' (http://www.last.fm/user/sebp)

sebp's Profile: http://forums.slimdevices.com/member.php?userid=11768
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2020-01-05 Thread cmmh


I found the following work-flow allowed me to use Net::UDAP on Ubuntu
18.04 
Just posting here "for the record" and maybe it will be helpful to
someone else.

git clone https://github.com/robinbowes/net-udap.git
cd net-udap
sudo apt install cpanminus
sudo cpanm Log::StdLog
sudo cpanm Term::Shell
sudo cpanm Class::Accessor
sudo cpanm IO::Interface::Simple
scripts/udap_shell.pl  



Robin Bowes wrote: 
> Hi all,
> 
> Net::UDAP is a Perl module to configure the SqueezeBox Receiver (SBR) 
> from a PC, i.e. without requiring a SqueezeBox Controller (SBC).
> 
> The project homepage is here:
> 
> http://projects.robinbowes.com/Net-UDAP
> 
> Net::UDAP was originally released in June 2008 and there have been no 
> significant changes since then. However, I've recently updated the 
> documentation so thought I'd post this announcement in case anyone tried
> 
> it previously but got stuck for whatever reason.
> 
> I've also fixed the registration system on the website so it is now 
> possible to register, login, and create support tickets. You could even
> 
> go completely crazy and add/improve the doucmenation by editing the
> wiki!
> 
> Net::UDAP is free software, but allow me to draw your attention to my 
> Paypal donnation link:
> 
> http://projects.robinbowes.com/Net-UDAP/trac/wiki/WikiStart#Donations
> 
> ;)
> 
> Enjoy!
> 
> R.



cmmh's Profile: http://forums.slimdevices.com/member.php?userid=21842
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2019-05-17 Thread Mike Meyer


This was a friggin' lifesaver... or a Receiver lifesaver anyway.  Thank
you!



'PGAScores' (http://forums.slimdevices.com/showthread.php?t=47480) &
'CollegeHockey' (http://forums.slimdevices.com/showthread.php?t=55731) 
(SuperDateTime Add-ons)

Mike Meyer's Profile: http://forums.slimdevices.com/member.php?userid=1832
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-12-05 Thread Viragored


I too had been struggling with my Duet and controller. And the thought
of finding something usable on Sourceforge that a person of my skills
could use was daunting, to say the least. Long story short - I unzipped
the .apk file from Sourceforge, installed File Commander on my Samsung
phone (Android 8) and copied the apk to a new folder I created in the
main memory. A tap on the file brought up the Android prompt to allow
installation, and in went Squeeze Config. I put the SB receiver into
discovery mode (flashing red light), opened Squeeze Config - and up
popped the Receiver on the menu. I merely switched the connection method
to LAN, accepted all the other defaults, and was instantly re-connected.
Wonderful! Thanks so much.



Digital: Squeezebox Duet Receiver - Yamaha RX-V2700 and Jamo speakers
Analogue: Speakercraft MZC-66 for whole house system
Logitech Music Server: 7.9 running on VortexBox 2.3 (built on an elderly
Dell PC)
Library: External USB drive
Ethernet: Squeezebox Receiver
Wifi: Duet controller

Viragored's Profile: http://forums.slimdevices.com/member.php?userid=32954
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-11-25 Thread slartibartfast


Tex wrote: 
> https://sourceforge.net/projects/lms-udap-utility/files/Excellent. Thanks, 
> Google search only found the original link which
doesn't exist any more.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-11-25 Thread Tex


https://sourceforge.net/projects/lms-udap-utility/files/



(1) Pi 3 w/ HifiBerry Digi + Pro, piCorePlayer 4.0.0, LMS 7.9.2, WD usb
drive for Music files
(1) Touch, (1) Transporter, (1) Duet

Tex's Profile: http://forums.slimdevices.com/member.php?userid=30118
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-11-25 Thread slartibartfast


cfuttrup wrote: 
> I tried Net UDAP, but witout any luck.
> 
> What worked for me was to download SqueezeConfig.APK on my PC, transfer
> it by cable to my phone. Allow an application to install such packages
> (in late Android versions, each app needs direct permission to do so).
> The Receiver was on Cable-Ethernet, rebooted to factory settings by
> holding the front button 6 seconds until quick-red-flashing appeared.
> Install the SqueezeConfig package on the Phone (SONY Xperia XZ in this
> case). It immediately found the Receiver and I told it to use the IP
> address of the server on my NAS. That's all.Where did you find the apk file?

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-11-25 Thread cfuttrup


I tried Net UDAP, but witout any luck.

What worked for me was to download SqueezeConfig.APK on my PC, transfer
it by cable to my phone. Allow an application to install such packages
(in late Android versions, each app needs direct permission to do so).
The Receiver was rebooted to factory settings by holding the front
button 6 seconds until quck-red-flashing appeared. Install the
SqueezeConfig package. It immediately found the Receiver and I told it
to use the IP address of the server on my NAS. That's all.



cfuttrup's Profile: http://forums.slimdevices.com/member.php?userid=32784
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-27 Thread utgg


wownflutter wrote: 
> I was able to finally get to the point where I can't make changes to all
> the settings. I've tried quite a few different settings but still am
> having no luck with wireless or wired connections.
> 25839
> The reason I have info in the wireless and wired settings is because
> I've been tryng both by changing the interface number. Would I have to
> clear out the settings that aren't needed when switching between the
> two.
> Keep in mind, this is all just mumbo jumbo to me. I am pretty clueless.
Given the SSID name you're using, I suspect you may also be trying to
connect to a 5GHz WiFi network. The receiver will only work on 2.4GHz.



utgg's Profile: http://forums.slimdevices.com/member.php?userid=40900
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-26 Thread Mnyb


wownflutter wrote: 
> I was able to finally get to the point where I can't make changes to all
> the settings. I've tried quite a few different settings but still am
> having no luck with wireless or wired connections.
> 25839
> The reason I have info in the wireless and wired settings is because
> I've been tryng both by changing the interface number. Would I have to
> clear out the settings that aren't needed when switching between the
> two.
> Keep in mind, this is all just mumbo jumbo to me. I am pretty clueless.

Is not lan gateway adress where you put the routers ip 198.168.0.1 and
lan network adress the fixed ip you want the receiver to have . It looks
like you try to give it the same ip as our router




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)
iPad1 with iPengHD & SqueezePad
(spares Touch, SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-26 Thread bpa


wownflutter wrote: 
> My god , I've been messing with this for days. I've tried Udap and also
> the Squeeze config app. That is absolutely impossible to figure out.
> I've read page after page on this forum. It's hopeless.

The command sequence I use is as follows:
1. Start udap
2. at udap prompt - type "discover"
3. type "list" to get a list fo the player found.
4. type "configure 1"  - the number is the player from the list
5. type "list" - show current settings
6. type "set server_address=192.168.xx.xx
squeezecenter_address=192.168.xx.xx" - the address xx.xx is your LMS
server
7. type "save_data"
8. Usually works or try power off / on the receiver.

What sequence have you tried ? please give full details.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-26 Thread wownflutter


My god , I've been messing with this for days. I've tried Udap and also
the Squeeze config app. That is absolutely impossible to figure out.
I've read page after page on this forum. It's hopeless.



wownflutter's Profile: http://forums.slimdevices.com/member.php?userid=68600
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-26 Thread wownflutter


w3wilkes wrote: 
> What system are you trying to run UDAP on. If a Windows system just use
> the .exe file. The Windows .exe file of Net::UDAP is self contained file
> with all the Pearl stuff integrated. When you run Net::UDAP the receiver
> needs to be ethernet cable attached to your router and then put into
> factory reset (long press on front button until you get the fast red
> blink, about 15 seconds).

I was able to finally get to the point where I can't make changes to all
the settings. I've tried quite a few different settings but still am
having no luck with wireless or wired connections.
25839


+---+
|Filename: Capture.PNG  |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=25839|
+---+


wownflutter's Profile: http://forums.slimdevices.com/member.php?userid=68600
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread w3wilkes


What system are you trying to run UDAP on. If a Windows system just use
the .exe file. The Windows .exe file of Net::UDAP is self contained file
with all the Pearl stuff integrated. When you run Net::UDAP the receiver
needs to be ethernet cable attached to your router and then put into
factory reset (long press on front button until you get the fast red
blink, about 15 seconds).



Main system - Rock Solid with LMS 7.9.1 Official on WHS 2011 - 2 Duets
and Squeeseslave
Cabin system - Rock solid with LMS 7.9.1 Official on Win10 Pro - 1 RPi 3
Model B/Hifiberry DAC+ Pro/PiCorePlayer and Squeezeslave

w3wilkes's Profile: http://forums.slimdevices.com/member.php?userid=22973
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread bpa


slartibartfast wrote: 
> I was referring to the link in the first page of the thread. I have not
> needed to use this myself but can imagine it is not straightforward
> unless you are familiar with it.
> 
> Sent from my SM-G900F using Tapatalk

Project has been moved to github soU uRL
https://github.com/robinbowes/net-udap

It still works although I think it needs to be patched for some OSs and
OS versions.  I moved from Ubuntu 16.04 to 18.04 and UDAP needed a mod
due to a change in output format of "ipconfig " command used by the
script.


UDAP parses output from a similar command in windows to get interface IP
address - so perhaps similar problem.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread slartibartfast


wownflutter wrote: 
> Do you mean the link in the very first page of this thread, or the first
> link I referenced in this post?
> 
> 
> I started all over and am trying to use the step by step from the
> beginning instead of using that UDAP shortcut.
> I can't even get past getting the udap_shell.pl to work. 
> The instructions are definitely written for expert users. I just can't
> get anywhere.

I was referring to the link in the first page of the thread. I have not
needed to use this myself but can imagine it is not straightforward
unless you are familiar with it.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread wownflutter


slartibartfast wrote: 
> Which link did you try? I just tried the link in the first post which
> opened a page contained another link to Github which also opens.
> 
> Sent from my SM-G900F using Tapatalk
Do you mean the link in the very first page of this thread, or the first
link I referenced in this post?


I started all over and am trying to use the step by step from the
beginning instead of using that UDAP shortcut.
I can't even get past getting the udap_shell.pl to work. 
The instructions are definitely written for expert users. I just can't
get anywhere.



wownflutter's Profile: http://forums.slimdevices.com/member.php?userid=68600
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread slartibartfast


wownflutter wrote: 
> I've tried everything I can think of to get this to work. I was getting
> all the errors listed above also. Then I finally see this link to a
> solution. But the link takes me to a page that seems to no longer
> exists.
> I really have no experience in open source or messing with all this IP
> kinda stuff. I've spent around 30 hours so far on this. Is this even
> worth it?Which link did you try? I just tried the link in the first post which
opened a page contained another link to Github which also opens.

Sent from my SM-G900F using Tapatalk





slartibartfast's Profile: http://forums.slimdevices.com/member.php?userid=35609
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-10-25 Thread wownflutter


dolodobendan wrote: 
> Great, there I can tell the world about how my newly acquired iridium
> plated remote control improved the sound of my USB headphones!
> 
> And back to Net::UDAP.
> 
> > 
Code:

  >   > 
  > UDAP> discover
  > info: *** Broadcasting adv_discovery message to MAC address 
00:00:00:00:00:00 on 255.255.255.255
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  > Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm 
line 296
  > Use of uninitialized value in concatenation (.) or string at 
/PerlApp/Net/UDAP.pm line 297,  line 1.
  > info:   adv_discovery response received from
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  > Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  > Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm 
line 358
  > mac not found in msg at /PerlApp/Net/UDAP/Shell.pm line 156
  > 

> > 
> 
> Anyone else got this with udap_shell_1_0_0.exe? (And maybe even has a
> solution?)
> 
> Edit:
> 
> My bad, this has been asked before and a solution was posted
> 
> forums.slimdevices.com/showthread.php?57861-Net-UDAP-SqueezeBox-Receiver-configuration-tool=501429=1#post501429
> 
> I got it to work using this:
> 
> github.com/robinbowes/net-udap/tree/1.0.
> 
> And a direct connection between my PC (first ethernet port) and the
> receiver.
I've tried everything I can think of to get this to work. I was getting
all the errors listed above also. Then I finally see this link to a
solution. But the link takes me to a page that seems to no longer
exists.
I really have no experience in open source or messing with all this IP
kinda stuff. I've spent around 30 hours so far on this. Is this even
worth it?



wownflutter's Profile: http://forums.slimdevices.com/member.php?userid=68600
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-01-02 Thread dolodobendan

Thomas8675309 wrote: 
> 
> Then I followed the general instructions here:
> 
> http://www.practicalreason.net/item/34-squeezebox-duet-without-controller
> 

Whoever wrote this mixed up local and receiver's IP, but since he was
consistent in his misuse, it should work (if it is works at all),
despite stuff like:

> Open a command window and get the IP address of the Squeezebox Receiver
> using the following DOS command:
> 
> > 
Code:

  >   > ipconfig /all

> > 
> 
> To get the Net::UDAP application to connect to the Squeezebox Receiver
> you need to run its udap_shell.pl script and specify the IP address of
> the Receiver you determined in the previous section.
>



LMS 7.9.1@1.02 (digimaster) / QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2018-01-02 Thread dolodobendan

Julf wrote: 
> Indeed. There is an "audiophile" subforum for discussing imagined
> improvements in sound quality.

Great, there I can tell the world about how my newly acquired iridium
plated remote control improved the sound of my USB headphones!

And back to Net::UDAP.


Code:


  UDAP> discover
  info: *** Broadcasting adv_discovery message to MAC address 00:00:00:00:00:00 
on 255.255.255.255
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm line 
296
  Use of uninitialized value in concatenation (.) or string at 
/PerlApp/Net/UDAP.pm line 297,  line 1.
  info:   adv_discovery response received from
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 57, 
 line 1.
  Use of uninitialized value in length at /PerlApp/Net/UDAP/Util.pm line 67, 
 line 1.
  Supplied string has length0(expected length: 6) at /PerlApp/Net/UDAP.pm line 
358
  mac not found in msg at /PerlApp/Net/UDAP/Shell.pm line 156
  



Anyone else got this with udap_shell_1_0_0.exe? (And maybe even has a
solution?)



LMS 7.9.1@1.02 (digimaster) / QNAP 469L QTS 4.3.4

dolodobendan's Profile: http://forums.slimdevices.com/member.php?userid=67663
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-15 Thread Julf

bpa wrote: 
> I think keep this thread to the use of Net::UDAP  - otherwise this
> digression will fill it.

Indeed. There is an "audiophile" subforum for discussing imagined
improvements in sound quality.



"To try to judge the real from the false will always be hard. In this
fast-growing art of 'high fidelity' the quackery will bear a solid gilt
edge that will fool many people" - Paul W Klipsch, 1953

Julf's Profile: http://forums.slimdevices.com/member.php?userid=42050
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread bpa

I think keep this thread to the use of Net::UDAP  - otherwise this
digression will fill it.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread drmatt

The word "better" is absolute and needs to be based on a measurable
quantity. Truth is it sounds "different", maybe, but not "better".


-Transcoded from Matt's brain by Tapatalk-



--
Hardware: 3x Touch, 1x Radio, 2x Receivers, 1 HP Microserver NAS with
Debian+LMS 7.9.0
Music: ~1300 CDs, as 450 GB of 16/44k FLACs. No less than 3x 24/44k
albums..

drmatt's Profile: http://forums.slimdevices.com/member.php?userid=59498
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread edwin2006

Pi3 with pcp and hifiberry dac sounds even better (clearer) as touch,
both wired. Perhaps lucky, I don't now.



*SqueezeBoxes:* 2x SB2 (Living room and study), 1x Radio (Kitchen), 1x
Boom (Dining room), 1x piCorePlayer (jacuzzi), 1x piCorePlayer (Garden)
1x OSMC + Squeezelite (Movie room), 1x Touch (Bedroom)
*Server:* LMS on Pi3 7.9.1. on PcP 3.21
*Network:* AVM Fritzbox, D-Link Smart Switch 24p, 3x Ubiquity

edwin2006's Profile: http://forums.slimdevices.com/member.php?userid=66926
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread alfista

I truly fear for humanity.



alfista's Profile: http://forums.slimdevices.com/member.php?userid=32396
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread petarst

My Nas is RopsberryPi with battery powerbank, I have found it is serves
me better than qnap storage in determination of SQ. HIFI system has to
be very very good in order to hear audible differences. But, as someone
suggest it is for another thread.

check this:

https://www.audiostream.com/content/electrically-isolate-your-networked-audio#TDc7Sx8W1PfDcWwH.97

http://www.crazy-audio.com/2013/10/tracking-down-noise-sources-on-a-raspberry-pi/

http://www.crazy-audio.com/2013/09/raspberry-pi-power-supply-noise-on-the-5v-rails/



petarst's Profile: http://forums.slimdevices.com/member.php?userid=66289
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread alfista

petarst wrote: 
> It seems my plan has failed, i knew that router will create some noise
> and i want to eliminate it
That's just nonsense.
There's nothing to suggest that noise carried on the ethernet cable
under normal circumstances will affect audio performance.
Even so, why would a switch induce worse noise than the NAS? Could just
as well be the opposite.

Enjoy your system and don't waste time coming up with solutions to
problems that simply don't exist.



alfista's Profile: http://forums.slimdevices.com/member.php?userid=32396
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread bpa

According to the hardware specs ( 
https://web.archive.org/web/20090221124647/http://slimdevices.com:80/pi_receiver.html
) , the SB has auto receiver polarity detection - this has been reported
as  auto MDIX which was a HP specific term. I think SB receiver can auto
detect direct vs crossover cable - there is unlikely to be any harm in
trying as long as there is nothing strange such as POE.

However if you are worried about noise ..  I suggest that is a different
conversation.



bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread petarst

Mnyb wrote: 
> Or use a switch ? That conects both NAS and the reciever to your network
> ?
> 
> How else is LMS on the NAS suposed to see the rest of the network ?
> 
> As you want to use net::udap you set up a reciever without the controler
> .
> The controller can do an ad-hoc connection directly to the reciever with
> some loss to n performance.
> 
> But if you expect to use a smartphone or tablet or the web-UI
> NAS/LMS/reciever must be on the rest of the network that everything's
> else conects to ?

It seems my plan has failed, i knew that router will create some noise
and i want to eliminate it, but, than I can't just use SB - NAS
connection via crossover cable, I still need wireless AP to be connected
via my phone. 

What really impress me is that I have compared upgraded SB duet vs some
expensive network players and SB blows them away. So far today I
couldn't find better player.



petarst's Profile: http://forums.slimdevices.com/member.php?userid=66289
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread Mnyb

Or use a switch ? That conects both NAS and the reciever to your network
?

How else is LMS on the NAS suposed to see the rest of the network ?

As you want to use net::udap you set up a reciever without the controler
.
The controller can do an ad-hoc connection directly to the reciever with
some loss to n performance.

But if you expect to use a smartphone or tablet or the web-UI
NAS/LMS/reciever must be on the rest of the network that everything's
else conects to ?




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)
iPad1 with iPengHD & SqueezePad
(spares Touch, SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread petarst

Thx mate, so it means i need to get crossover cable, right?


BR/Petar



petarst's Profile: http://forums.slimdevices.com/member.php?userid=66289
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread drmatt

If the NAS has a gigabit port it should autodetect crossover. But the
Receiver won't it's only 100Mb.


-Transcoded from Matt's brain by Tapatalk-



--
Hardware: 3x Touch, 1x Radio, 2x Receivers, 1 HP Microserver NAS with
Debian+LMS 7.9.0
Music: ~1300 CDs, as 450 GB of 16/44k FLACs. No less than 3x 24/44k
albums..

drmatt's Profile: http://forums.slimdevices.com/member.php?userid=59498
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-11 Thread petarst

Bravo, thank you very much !

Does anyone knows if i can connect directly receiver and my NAS without
crossover cable if the port is auto sensitive?



petarst's Profile: http://forums.slimdevices.com/member.php?userid=66289
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-09 Thread Jeff07971

petarst wrote: 
> Dear friend,
> 
> link to download application is not working anymore, can you make it
> alive again please?
> 
> https://projects.robinbowes.com/Net-UDAP/trac/browser/branches/1.0.x
> 
> BR/Petar

Now on GitHub

https://github.com/robinbowes/net-udap



*Players:* SliMP3,Squeezebox3 x3,Receiver,SqueezePlayer,PiCorePlayer
x3,Wandboard
*Server:* LMS Version:  7.9.0 - 1475786002 on Centos 7 VM on ESXi 6 on
Dell T320
*Plugins:* AutoRescan/BBCiPlayer/PowerSave/PowerSwitchIII/Squeezecloud
*Remotes:* iPeng8/Orangesqueeze/PC/Jivelite
*Music:* 383GB,1269 albums 17756 songs 4381 artists mostly FLACs

*Want a webapp ?* See
http://forums.slimdevices.com/showthread.php?104305-Webapp-for-LMS

Jeff07971's Profile: http://forums.slimdevices.com/member.php?userid=49290
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-08-09 Thread petarst

Dear friend,

link to download application is not working anymore, can you make it
alive again please?

https://projects.robinbowes.com/Net-UDAP/trac/browser/branches/1.0.x

BR/Petar



petarst's Profile: http://forums.slimdevices.com/member.php?userid=66289
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-03-16 Thread VFRBOB

Thanks Robin 

Really appreciate this, without good folk like you, we would be lost ...



VFRBOB's Profile: http://forums.slimdevices.com/member.php?userid=64083
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-03-16 Thread robinbowes

OK, looks like I need to do a few updates. :)

I'll try and have a look this evening.

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-03-16 Thread VFRBOB

I did start following the instructions before I posted for help, but the
link in the instructions to download the zipped file comes back with
Trac Error - Net-UDAP no node branches / 1.0.x  I'm sorry but I don't
understand what that means but I'm guessing it means the file is not
there ?



VFRBOB's Profile: http://forums.slimdevices.com/member.php?userid=64083
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-03-15 Thread robinbowes

Try starting here:
https://projects.robinbowes.com/Net-UDAP/trac/wiki/GettingStarted

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-03-15 Thread VFRBOB

Hello

I'm try to configure a new to Duet Receiver without the controller. I
have heard about the Net-UDAP utility but when I follow the link 

https://projects.robinbowes.com/Net-UDAP/trac 

I cant figure out where to download it. This is all new to me so any
help would be gratefully received.. 

Thanks 

Steve



VFRBOB's Profile: http://forums.slimdevices.com/member.php?userid=64083
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-01-02 Thread robinbowes

Excellent. Glad it worked for you.

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2017-01-02 Thread Thomas8675309

I just wanted to report that I just downloaded from github using Robin's
instructions:

Code:

$ git clone https://github.com/robinbowes/net-udap.git
  $ cd net-udap
  $ sudo cpan Log::StdLog Term::Shell Class::Accessor IO::Interface::Simple
  $ ./scripts/udap_shell.pl 


(Note that I had to add sudo to the cpan command above to make it
complete without errors - using Ubuntu 16.04.)

Then I followed the general instructions here:

http://www.practicalreason.net/item/34-squeezebox-duet-without-controller

I got a few - OK, more than a few - "Use of unitialized value" warnings
like the following:


Code:

  Use of uninitialized value in pack at 
/tmp/net-udap/scripts/../src/Net-UDAP/lib/Net/UDAP/Constant.pm line 309,  
line 8 



But despite the warnings, everything worked great - I successfully set
up a receiver that had been reset after a power outage.

Robin, thanks so much - donation sent.

Cheers.

Tom



Thomas8675309's Profile: http://forums.slimdevices.com/member.php?userid=23271
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread cobbr2

I sent you a pint or two.  I used my Ubuntu laptop this time; had no
trouble with that cpan command and immediately resuscitated the
receiver. Hallelujah! Wasn't aware of the need to run that `cpan`
command; totally helpful. And I'm always happier with git than svn :)

robinbowes wrote: 
> Something like this should work:
> 
> > 
Code:

  >   > 
  > $ git clone https://github.com/robinbowes/net-udap.git
  > $ cd net-udap
  > $ cpan Log::StdLog Term::Shell Class::Accessor IO::Interface::Simple
  > $ ./scripts/udap_shell.pl
  > UDAP> discover
  > info: <<< Broadcasting adv_discovery message to MAC address 
00:00:00:00:00:00 on 255.255.255.255
  > 

> >



cobbr2's Profile: http://forums.slimdevices.com/member.php?userid=7285
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread robinbowes

Hmm, in that case:

Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

:)



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread drmatt

Have to go digging for signatures in Tapatalk!

Sent from my Nexus 9 using Tapatalk





drmatt's Profile: http://forums.slimdevices.com/member.php?userid=59498
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread robinbowes

Glad it's still useful.

Check my .sig ;)

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread matka

robinbowes wrote: 
> Something like this should work:
> 
> > 
Code:

  >   > 
  > $ git clone https://github.com/robinbowes/net-udap.git
  > $ cd net-udap
  > $ cpan Log::StdLog Term::Shell Class::Accessor IO::Interface::Simple
  > $ ./scripts/udap_shell.pl
  > UDAP> discover
  > info: <<< Broadcasting adv_discovery message to MAC address 
00:00:00:00:00:00 on 255.255.255.255
  > 

> > 
Robin, since you are here, I wanted to thank you for the Net::Udap, I
actually prefer it to the remote... Saved 2 receivers so far.



George

Transporter->Pathos Logos->Triangle Celius
Touch->Yamaha RX-V673 -> Paradigm Monitor 7
2 Duets, 1 Boom, 1 SB3, 1 Touch, 1 Radio, Transporter
Nexus 5 -> Sennheiser HD 380 Pro 
2 servers ->  Ubuntu Linux, Zotac ZBOX-CA320NANO-P and Desktop hardware

matka's Profile: http://forums.slimdevices.com/member.php?userid=34878
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread robinbowes

Something like this should work:


Code:


  $ git clone https://github.com/robinbowes/net-udap.git
  $ cd net-udap
  $ cpan Log::StdLog Term::Shell Class::Accessor IO::Interface::Simple
  $ ./scripts/udap_shell.pl
  UDAP> discover
  info: <<< Broadcasting adv_discovery message to MAC address 00:00:00:00:00:00 
on 255.255.255.255
  




Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-20 Thread matka

cobbr2 wrote: 
> I'm sure that I'm just going insane from having no music where I'm
> working on this... but.
> So I figured I'd try to install 1.0.x. However, the "download in other
> format" links no longer exist on the Trac browser (in fact, the links
> all over the wiki now fail; there is no
> https://projects.robinbowes.com/Net-UDAP/trac/browser/branches/1.0.x .
> https://projects.robinbowes.com/Net-UDAP/trac/browser/Net-UDAP/branches/1.0.x
> appears to be what I'm looking for, though -- but, no download links I
> can see on that page.)
> 
Few days ago I have resurrected my duet with verions 1.0_01 from github


https://github.com/robinbowes/net-udap



George

Transporter->Pathos Logos->Triangle Celius
Touch->Yamaha RX-V673 -> Paradigm Monitor 7
2 Duets, 1 Boom, 1 SB3, 1 Touch, 1 Radio, Transporter
Nexus 5 -> Sennheiser HD 380 Pro 
2 servers ->  Ubuntu Linux, Zotac ZBOX-CA320NANO-P and Desktop hardware

matka's Profile: http://forums.slimdevices.com/member.php?userid=34878
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2016-11-19 Thread cobbr2

I'm sure that I'm just going insane from having no music where I'm
working on this... but.

I've got a Vortexbox (v2.3); I've always used the very first version of
Net-UDAP (0.0.1) in my past, but haven't needed to use it on this
vortexbox.  Also, every bit of network gear in my home network has
changed since I've used Net-UDAP last. OTOH: Pretty wide-open, the
router/wap is running DD-WRT and so is the one repeater AP.  I've tried
to reach the duet both wirelessly and wired; the vortexbox from which
I'm configuring things is wired.

I just fumble-fingered in SqueezeCommander while trying to pull one my
Duet Receiver into a new synchronization group, and it got lost.  I
tried a power cycle, but no good.  I've got it in slow blinking red
now but my "discover" fails entirely: doesn't even say BROADCAST ...


I presume that means Net-UDAP can't open the socket it needs.

So I figured I'd try to install 1.0.x. However, the "download in other
format" links no longer exist on the Trac browser (in fact, the links
all over the wiki now fail; there is no
https://projects.robinbowes.com/Net-UDAP/trac/browser/branches/1.0.x .
https://projects.robinbowes.com/Net-UDAP/trac/browser/Net-UDAP/branches/1.0.x
appears to be what I'm looking for, though -- but, no download links I
can see on that page.)

So I used an svn client to pull the directory down to my mac and copied
it to my vortexbox (there's no svn in the vortexbox repos and didn't
want to start down that path if I didn't need to; I'm sure there's a
way, but...). But the scripts all fail for problems with their @INC
path; e.g., 

-bash-4.2$ ./scripts/udap_shell.pl
Can't locate Pod/Usage.pm in @INC (@INC contains:
/home/rec/net-udap-1.0.x/scripts/../src/Net-UDAP/lib
/usr/local/lib/perl5 /usr/local/share/perl5 /usr/lib/perl5/vendor_perl
/usr/share/perl5/vendor_perl /usr/lib/perl5 /usr/share/perl5 .) at
./scripts/udap_shell.pl line 33.

which makes me think this path ends in CPAN hell.

What's my best way out of the maze?  Do I head down the route of
figuring out if/why my vortexbox can't UDP in my network? Or get more
modules installed?



cobbr2's Profile: http://forums.slimdevices.com/member.php?userid=7285
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2015-03-17 Thread davemal

I am also having some trouble getting this working, with a boom.

One of my booms has a dead screen and I want to set it up so that I can
control it via iPeng. Before I had a brain explosion and did a fact
reset, it was working aside from the screen. I booted with the '+'
depressed but nothing is discovered. I tested the process with a working
boom and it would not discover either.

I am running Fedora 8 as a VM on a windows host with a direct connection
(X-over cable) between my laptop and the boom. I put the boom end into
another laptop and run wireshark and could confirm that the broadcasts
are being sent out on the wire. When I run wireshark on the local
machine with the boom connected, I see the broadcast go out but no
response from the boom. So it seems that the boom is not responding for
some reason.

I have tried sending the discovery packet at various times during
startup as well as after selecting 'English' and then both wired and
wireless networks.

Any ideas on what I could try to get the boom to respond ?

Comments greatly appreciated.


cheers



davemal's Profile: http://forums.slimdevices.com/member.php?userid=21639
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2015-01-18 Thread eric-a

Followup to previous post...

So after a few package updates on my machine, a reboot, and different
Squeezebox devices on my network, I decided to try again.  Now, there is
no crash, but the discover function works intermittently -- sometimes
it discovers and sometimes it doesn't (that's OK I guess, it's using UDP
right?); and the list function displays an error while trying to
printf the results:

UDAP discover
info:  Broadcasting adv_discovery message to MAC address
00:00:00:00:00:00 on 255.255.255.255
UDAP list
#MAC AddressType   Status 
== = == ===
UDAP discover
info:  Broadcasting adv_discovery message to MAC address
00:00:00:00:00:00 on 255.255.255.255
info:  adv_discovery response received from 00:04:20:1b:0b:cd
info:  Broadcasting get_ip message to MAC address 00:04:20:1b:0b:cd
on 255.255.255.255
info:  Broadcasting get_data message to MAC address 00:04:20:1b:0b:cd
on 255.255.255.255
UDAP list
#MAC AddressType   Status 
== = == ===
Use of uninitialized value in printf at
/m/home-eric/bin/Net-UDAP/net-udap.git/trunk/scripts/../src/Net-UDAP/lib/Net/UDAP/Shell.pm
line 480, FIN line 14.
Use of uninitialized value in printf at
/m/home-eric/bin/Net-UDAP/net-udap.git/trunk/scripts/../src/Net-UDAP/lib/Net/UDAP/Shell.pm
line 480, FIN line 14.
1 00:04:20:1b:0b:cd   
UDAP 

Let me know if anyone has any ideas; I'd love to get this working.  The
synchronized factory-reset cycle on the duet, boot slowness, painful
wifi selection, and its super finicky controller/receiver pairing has me
going mad.  I spent half an hour trying to switch a receiver over to
ethernet (not wifi) without success.

Thanks!   --eric



eric-a's Profile: http://forums.slimdevices.com/member.php?userid=45776
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2015-01-15 Thread eric-a

Just installed Net-UDAP, but the discover routine crashes:

$ svn co http://projects.robinbowes.com/svn/Net-UDAP/branches/1.0.x

$  scripts/udap_shell.pl 
UDAP discover
info: *** Broadcasting adv_discovery message to MAC address
00:00:00:00:00:00 on 255.255.255.255
info:   adv_discovery response received from 00:04:20:1b:0b:cd
info:   adv_discovery response received from 00:04:20:05:c4:92
info:   adv_discovery response received from 00:04:20:05:c4:92
ucp_method get_uuid callback not implemented yet at
/m/home-eric/bin/Net-UDAP/1.0.x/scripts/../src/Net-UDAP/lib/Net/UDAP.pm
line 292.
Raw msg:
00 01 02 03 04 05 06 07 - 08 09 0A 0B 0C 0D 0E 0F 
0123456789ABCDEF

  00 01 00 04 20 05 C4 92 - 00 01 00 04 20 1B 0B CD  
... ...
0010  00 01 C0 01 01 00 01 00 - 01 00 0B
...
ucp_method invalid or not defined. at
/m/home-eric/bin/Net-UDAP/1.0.x/scripts/../src/Net-UDAP/lib/Net/UDAP/Shell.pm
line 153.
$

I've tried a half dozen times; seems repeatable.  Any help?



eric-a's Profile: http://forums.slimdevices.com/member.php?userid=45776
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-12-03 Thread aubuti

wcndave wrote: 
 The good news is I was able to set up my SB, however it would be great
 to have this runnable in windows.
It runs fine in Windows, but you need to install Perl first. The
community edition is free of charge -- see
http://www.activestate.com/activeperl



aubuti's Profile: http://forums.slimdevices.com/member.php?userid=2074
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-12-02 Thread wcndave

I found this pretty hard to use, I downloaded your latest version,
however it cannot run the .pl script, i guess this is intended for linux
environments.

I then found an exe file from the first page, however I am sure this is
a really old version, and I had a LOT of error messages which made
reading output almost impossible.

The good news is I was able to set up my SB, however it would be great
to have this runnable in windows.

I am however very grateful you took time to make this, as it at least
did sort out my issue ;-)

thanks

Dave



2 x Booms, 2 x Players, 2 x Touch, 1 x Joggler, LMS running on Synology
D217+
Love it - Bring it back Logitech!

wcndave's Profile: http://forums.slimdevices.com/member.php?userid=29445
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-11-18 Thread robinbowes

I think server_address is your local server, and squeezecenter_address
is the Slim/Logitech server-in-the-cloud.

Yes, it's fine for the IP to show 0.0.0.0 when mode is DHCP - I think it
gets ignored.

R.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-11-17 Thread fuzzweed

Just trying this out for the first time and have a couple of Q's.
1) What's the difference between server_address and
squeezecenter_address?
2) I have lap_ip_mode set to 1 (DHCP) but lan_network_address always
shows as 0.0.0.0 - is this correct?
thanks



fuzzweed's Profile: http://forums.slimdevices.com/member.php?userid=63585
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-07-13 Thread Aikenslim

Robin Bowes wrote: 
 Hi all,
 
 Net::UDAP is a Perl module to configure the SqueezeBox Receiver (SBR) 
 from a PC, i.e. without requiring a SqueezeBox Controller (SBC).
 
 The project homepage is here:
 
 deleted because I don't have enough posts!
 
 Net::UDAP was originally released in June 2008 and there have been no 
 significant changes since then. However, I've recently updated the 
 documentation so thought I'd post this announcement in case anyone tried
 
 it previously but got stuck for whatever reason.
 
 I've also fixed the registration system on the website so it is now 
 possible to register, login, and create support tickets. You could even
 
 go completely crazy and add/improve the doucmenation by editing the
 wiki!
 
 Net::UDAP is free software, but allow me to draw your attention to my 
 Paypal donnation link:
 
 deleted because I don't have enough posts!
 
 ;)
 
 Enjoy!
 
 R.

Hi Robin,

Thanks for this handy little tool, which I used to great effect after my
Squeezebox controller went kaput!

Just FYI, in your instructions you make some comments about ensuring
that udap_shell is being run on a machine that exists on the same wired
network. I managed to query my squeezebox just fine from a laptop
running on a wireless network! (with the Squeezebox on the wired
network). If you already knew that, then ignore me ;-) If you didn't,
then maybe you can add that to your instructions so lazy people like me
who can't be bothered making space on their router will know they can
give it a try with some chance of success ;-)

Thanks again!



Aikenslim's Profile: http://forums.slimdevices.com/member.php?userid=63100
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-06-25 Thread robinbowes

Bultee wrote: 
 Many thanks for the great tool. 
 I have a duet without a controller. I used IDAP to successfully connect
 it in wired mode. However in wireless mode it won't get past the blue
 light.  I tried every combination of WPA parameters as well as
 unsecured.  Each time I matched the parameters in the router config. 
 Interestingly the receiver shows up in the attached devices table in the
 router config but won't function and doesn't respond to pinging (in
 wired mode it does).  This was all in DHCP mode.
 I also tried static with the same results except that in wired mode the
 receiver doesn't show up on the router list but does function and can be
 pinged (still not pingable in wireless)
 
 Can anyone offer any suggestions?
 
 This may be a red herring but...I also noticed that UDAP responds
 differently in wired and wireless modes.  In the wired mode it mimics
 the hybrid setup where after saving the setup it flashes red until the
 server is started after which it connects and is ready to go.  {reset}
 doesn't function in wired mode.  After a wireless setup [reset] does
 work and the unit goes through yellow-green to blue, again mimicking the
 wireless set up as described by logitech knowledgebase 11915,
 specifically -  When the light turns blue, the Controller will ask you
 to choose a music source. Choose SqueezeCenter if it is installed on
 your computer.  It seems to be waiting for the controller to tell it
 which server to use but without the controller is there a way for IDAP
 to emulate this? Probably doesn't explain the inability to ping the
 receiver.
 Thanks

Hi,

Can you give me some details about your setup, eg. on what platform are
you running? What version of NetUDAP are you using? etc.



Net-UDAP is free software - you do not have to pay for it.
However, if you found it useful, please consider donating:
https://projects.robinbowes.com/Net-UDAP/trac#Donations

robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-06-24 Thread w3wilkes

When you did the UDAP setup did you include
squeezecenter_address=IP address of your LMS server

I had one occurrence where this was the only way I could get past the
blue light to the dull white (connected to LMS). BTW, I run a static IP
for my LMS server so I always know where it is.



2 Duets - 1 for upstairs and 1 for downstairs
Rock Solid with LMS 7.8.0 and WHS 2011

w3wilkes's Profile: http://forums.slimdevices.com/member.php?userid=22973
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-06-24 Thread Mnyb

w3wilkes wrote: 
 When you did the UDAP setup did you include
 squeezecenter_address=IP address of your LMS server
 
 I had one occurrence where this was the only way I could get past the
 blue light to the dull white (connected to LMS). BTW, I run a static IP
 for my LMS server so I always know where it is.

Yeah had to do that too as I had a flaw in my old servers fw ( I'd did
not know that then ) I could not get the automatic server discovery to
work .

But I I have recent input , have not used my reciever for years.




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)
iPad1 with iPengHD  SqueezePad
(in storage SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-06-24 Thread Bultee

Yes server and squeezecenter addresses are fine. Works in wired mode but
not in wireless. Interestingly flatternamn's squeeze commander can see
the receiver in wireless mode but is not able to connect to it.



Bultee's Profile: http://forums.slimdevices.com/member.php?userid=63051
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2014-06-23 Thread Bultee

Many thanks for the great tool. 
I have a duet without a controller. I used IDAP to successfully connect
it in wired mode. However in wireless mode it won't get past the blue
light.  I tried every combination of WPA parameters as well as
unsecured.  Each time I matched the parameters in the router config. 
Interestingly the receiver shows up in the attached devices table in the
router config but won't function and doesn't respond to pinging (in
wired mode it does).  This was all in DHCP mode.
I also tried static with the same results except that the receiver
doesn't show up on the router list but does function and can be pinged.

Can anyone offer any suggestions?

This may be a red herring but...I also noticed that UDAP responds
differently in wired and wireless modes.  In the wired mode it mimics
the hybrid setup where after saving the setup it flashes red until the
server is started after which it connects and is ready to go.  {reset}
doesn't function in wired mode.  After a wireless setup [reset] does
work and the unit goes through yellow-green to blue, again mimicking the
wireless set up as described by logitech knowledgebase 11915,
specifically -  When the light turns blue, the Controller will ask you
to choose a music source. Choose SqueezeCenter if it is installed on
your computer.  It seems to be waiting for the controller to tell it
which server to use but without the controller is there a way for IDAP
to emulate this? 
Thanks



Bultee's Profile: http://forums.slimdevices.com/member.php?userid=63051
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread TheSeeker

anyone, please?!



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread mikeh49

Standby.  I did exactly this, but I need to do some research to get up
to speed.  I used a fixed IP address on the SBC and use it wired.  It
may take some time to get it setup wireless, security and password need
some effort, IIRC.  If you could run wired, your life will be easier. 
You're on the right track to get it working wired first.  

I'm not sure how server address and squeezecenter address work.  I
entered values for these, but have since moved servers around, different
addresses, and they always find the SB.  The lan_gateway needs to be the
IP of your router.  

Can you post the output of the list command so we can see what you have
set?



mikeh49's Profile: http://forums.slimdevices.com/member.php?userid=48620
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread TheSeeker

mikeh49 wrote: 
 Standby.  I did exactly this, but I need to do some research to get up
 to speed.  I used a fixed IP address on the SBC and use it wired.  It
 may take some time to get it setup wireless, security and password need
 some effort, IIRC.  If you could run wired, your life will be easier. 
 You're on the right track to get it working wired first.  
 
 I'm not sure how server address and squeezecenter address work.  I
 entered values for these, but have since moved servers around, different
 addresses, and they always find the SB.  The lan_gateway needs to be the
 IP of your router.  
 
 Can you post the output of the list command so we can see what you have
 set?


thanks for the reply!!


there's a good news!! i was able to make the LMS installed on my desktop
to recognise the player, when configured for wired-DHCP mode, using the
relevant command-line for it on UDAP, ie, -*set interface=1
lan_ip_mode=1 squeezecenter_address=192.168.1.150*-


BUT, trying on static IP is tricky!

this is what i tried for a wired static IP configuration:

1. went to the IPv4 properties of my network-connection.

2. selected 'Use the following IP address', and put the IP address as
*192.168.1.101* (the router still has 'DHCP-enabled'. does it need to be
disabled for this config? though i haven't run into any issues so far on
thenet, with my desktop having a static IP and DHCP being enabled on the
router).

3. then, fired up UDAP, 'discovered' the SBC.

4. now here's the tricky part. am not sure of the values i need to fill
in the relevant command-line for this config, ie,

-*set interface=1 lan_ip_mode=0 lan_gateway=192.168.3.1
lan_network_address=192.168.3.10 lan_subnet_mask=255.255.255.0
primary_dns=192.168.3.1 squeezecenter_address=192.168.1.150
*-


my confusions in this are:

* -lan_gateway- i understood is my router's IP-address;
-lan_network_address- is i presume the static IP i put, ie,
192.168.1.101, isn't it?!

* -primary_dns- should be the actual primary dns i use, ie,
*59.185.3.10*, isn't it?! but then, why does the sample show it as the
lan-gateway address instead?!

* since the LMS is for now installed on my desktop itself, i put in the
-squeezecenter_address- as 192.168.1.101. 

after following the above steps, my connection goes for a toss! i get an
IP-conflict error, and can't pull-up any webpages. i didn't take a
screenshot of the 'list' command in UDAP, because i first want to make
sure what values i need to fill in the above command-line. please
suggest what those should be. since now i was successful in making the
SBC get detected by squeezecenter, am sure that it can be done by using
a static IP as well on the wired-mode.



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread Mnyb

set interface=1 lan_ip_mode=0 lan_gateway=192.168.3.1
lan_network_address=192.168.3.10 lan_subnet_mask=255.255.255.0
primary_dns=192.168.3.1 squeezecenter_address=192.168.1.150

I this correct would not the gateway (your router ) for example be
192.168.*1*.1 it is usually only the last digits that change if
everything is on the same network which ideally should be for this to
just work
192.168.1.X

DNS most routers can provide DNS proxying or what you want to call it
this way if you want to change the DNS you only have to change it one
place, the router .
If you place specific DNS settings in every device you have to change it
everywhere .
When you use DHCP the device gets DNS setting from the router .




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)
iPad1 with iPengHD  SqueezePad
(in storage SB3, reciever ,controller )
server HP proliant micro server N36L with ClearOS Linux

http://people.xiph.org/~xiphmont/demo/neil-young.html

Mnyb's Profile: http://forums.slimdevices.com/member.php?userid=4143
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread mikeh49

Couple of things:

If you want a static ip on your desktop, you need to set the address
outside the range of dhcp addresses that the router assigns.  For my
Linksys router, the dhcp addresses start at 192.168.1.100.  Anything
less than 100 can be used for static.  For static on the desktop, you
need to manually set the address, the gateway (router) address, the
subnet mask (255.255.255.0), and the DNS addresses.  You can get those
from the router admin settings.  Or use public DNS servers, Google has
some, but they will probably serve you ads based on what you look at.  I
don't think it is essential to have a static ip for the server, but it
is better to always know where it is.  

For the Squeezebox:

Here is my Net::UDP output, without the wireless stuff (all are
irrelevant):

 UDAP [1] (squeezebox xx) list
 bridging: 0
 hostname:
 interface: 1  *-- 1 means wired-*
 lan_gateway: 192.168.1.1  *-- router address-*
 lan_ip_mode: 0 *-- static ip-*
 lan_network_address: 192.168.1.18  *-- address of squeezebox-*
 lan_subnet_mask: 255.255.255.0
 primary_dns: 8.8.4.4  *-- a Google DNS server-*
 secondary_dns: 0.0.0.0
 server_address: 0.0.0.0
 squeezecenter_address: 192.168.1.12  *-- address of the server when
 setup, have used many others since, including DHCP assigned-*
 squeezecenter_name:
 

Explanations in bold.  I'm thinking the server addresses and name are
dynamic, and if you could see this with the SB running, you would see
the address and name of the server that is currently connected.  Note
that the SB and server addresses are outside the dhcp range of the
router, 100.



mikeh49's Profile: http://forums.slimdevices.com/member.php?userid=48620
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread TheSeeker

Mnyb wrote: 
 set interface=1 lan_ip_mode=0 lan_gateway=192.168.3.1
 lan_network_address=192.168.3.10 lan_subnet_mask=255.255.255.0
 primary_dns=192.168.3.1 squeezecenter_address=192.168.1.150
 
 I this correct would not the gateway (your router ) for example be
 192.168.*1*.1 it is usually only the last digits that change if
 everything is on the same network which ideally should be for this to
 just work
 192.168.1.X
 
 DNS most routers can provide DNS proxying or what you want to call it
 this way if you want to change the DNS you only have to change it one
 place, the router .
 If you place specific DNS settings in every device you have to change it
 everywhere .
 When you use DHCP the device gets DNS setting from the router .

mikeh49 wrote: 
 Couple of things:
 
 If you want a static ip on your desktop, you need to set the address
 outside the range of dhcp addresses that the router assigns.  For my
 Linksys router, the dhcp addresses start at 192.168.1.100.  Anything
 less than 100 can be used for static.  For static on the desktop, you
 need to manually set the address, the gateway (router) address, the
 subnet mask (255.255.255.0), and the DNS addresses.  You can get those
 from the router admin settings.  Or use public DNS servers, Google has
 some, but they will probably serve you ads based on what you look at.  I
 don't think it is essential to have a static ip for the server, but it
 is better to always know where it is.  
 
 For the Squeezebox:
 
 Here is my Net::UDP output, without the wireless stuff (all are
 irrelevant):
 
 
 
 Explanations in bold.  I'm thinking the server addresses and name are
 dynamic, and if you could see this with the SB running, you would see
 the address and name of the server that is currently connected.  Note
 that the SB and server addresses are outside the dhcp range of the
 router, 100.


hoorah! i realised what the mistake what was, after chatting with a
friend now.

the static IP command-line is not for the desktop or the device which
has squeezecenter on it with static IP, BUT to assign static IP to the
SBC! elated to tell you that LMS detected my player quickly in this mode
too now!

now 3 objectives achieved today - player detected in wired-DHCP mode,
player detected in wired-static IP mode, and the 3rd being, i found a
technician who is ready to inspect the SBC's display (i will be shipping
my SBC to him tomorrow)!

so the command-line that i used now was:

-set interface=1 lan_ip_mode=0 lan_gateway=_192.168.1.1_
lan_network_address=_192.168.1.200_ lan_subnet_mask=255.255.255.0
primary_dns=_192.168.1.1_ squeezecenter_address=_192.168.1.101_-

where,

-192.168.1.1 -- is my router's gateway address-

-192.168.1.200 -- is a random IP-address that i assigned to the SBC as
its static IP address-

-set the primary dns as my router's gateway itself-

-squeezecenter address is the IP address of the machine on which
squeezecenter is loaded, in this case, my desktop.-

many thanks to both of you, and my sincere apologies to bother you
through my last goof-up of a post! 
the tougher task now remains, to configure it for wireless-connection.
however, am now very less bothered about it, as can now use my NAS and
the SBC, both wired, connected to my router through 2 LAN cables
simultaneously! 
but still, would give the wireless-configuration my shot anyway!



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread mikeh49

Great.  Make sure the 192.168.1.200 is indeed outside the range of
addresses that your router uses for dhcp.  My Linksys has a setting for
the range of dhcp addresses, starting at 192.168.1.100.  You can limit
the number of connections by reducing the range.  I don't know what the
default is, I have mine set at 100 to 119, for 20 connections.



mikeh49's Profile: http://forums.slimdevices.com/member.php?userid=48620
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread mikeh49

Here's a thread on replacing the display:

http://forums.slimdevices.com/showthread.php?48360-SB3-with-a-cracked-display-(highlight=itron

And a link to the display mfg site:

http://www.noritake-itron.com/NewWeb/Glass/glass.asp?Action=0FindSql=WHERE+ProdCat%3D+%27VFGlass%27+AND+PDone%3D+%27Y%27PartN=Decsr=PCBX=PCBY=DotsX=DotsY=

They have a rep in Chicago, IIRC.  Assuming you're in the US of course. 
Price is $76 on their site.  Not sure if you could actually buy it.  

I run mine blind from squeezeplay or phone/tablet apps, or the server.



mikeh49's Profile: http://forums.slimdevices.com/member.php?userid=48620
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread TheSeeker

mikeh49 wrote: 
 Great.  Make sure that 192.168.1.200 is indeed outside the range of
 addresses that your router uses for dhcp.  My Linksys has a setting for
 the range of dhcp addresses, starting at 192.168.1.100.  You can limit
 the number of connections by reducing the range.  I don't know what the
 default is, I have mine set at 100 to 119, for 20 connections.

i think it is out of the range. not sure, but in my router's settings,
the DHCP server is set to IP addresses starting from 192.168.1.2, and
has an IP pool-count of 32. so if this is what you were indicating at,
then my SBC is safe with its IP address of 192.168.1.200.



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-12 Thread TheSeeker

mikeh49 wrote: 
 Here's a thread on replacing the display:
 
 http://forums.slimdevices.com/showthread.php?48360-SB3-with-a-cracked-display-(highlight=itron
 
 And a link to the display mfg site:
 
 http://www.noritake-itron.com/NewWeb/Glass/glass.asp?Action=0FindSql=WHERE+ProdCat%3D+%27VFGlass%27+AND+PDone%3D+%27Y%27PartN=Decsr=PCBX=PCBY=DotsX=DotsY=
 
 They have a rep in Chicago, IIRC.  Assuming you're in the US of course. 
 Price is $76 on their site.  Not sure if you could actually buy it.  
 
 I run mine blind from squeezeplay or phone/tablet apps, or the server.

thanks! had seen the slimdevices-thread above earlier, but couldn't get
to the webpage of noritake. repped you! :)



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-11-11 Thread TheSeeker

Hello everyone!

i went through a few pages of this thread. superb support here! i
request knowledgeable members to please assist me as well. this will be
a little long, so kindly bear with me.

i have a 'blind' SB3; got from a friend. it wasn't so, until it reached
me. powers up well. toslink light lit up (solid red). my laptop can
detect it in the wifi-network. showed it to a few technicians. they laid
down their arms even without giving it a proper look. have tried all the
methods like rmeoving the W/L card, trying facotry reset, etc., but the
display just won't come up! now the only options left with me are to use
NET::UDAP + get a PSU from ebay (although i have been using 2 recently
purchased locally-made PSUs of the same rating as the bundled PSU) +
send it to one more technician in another city, who inspires some hope
of the VFD getting repaired.

anyway, i tried the UDAP method y'day. my ultimate aim is to use it in
conjuction with a GoFlex Home, which has debian and squeezeplug loaded
onto it. i would stream my music-files to the NAS, which would then be
used with the SBC to play the songs on my floorstanders. however,
initially now, i just want to test the SBC with my desktop, so lets
forget the NAS-thing for the moment. the desktop is connected to my
router with the ethernet cable, and not wirelessly.

so y'day, i was trying to establish a connection between the SBC and my
PC. what i did was:

- connected the SBC to my router with wire, ie, through LAN cable.

- powered up the SBC into factory reset mode.

- started UDAP on the PC.

- UDAP discovered the SBC.

- now, to set-up the network, what i did was typed the wired DHCP
command-line, ie, -set interface=1 lan_ip_mode=1
squeezecenter_address=192.168.1.190-, and -saved_data-, and -reset-
(192.168.1.190 is the IP addr. of my PC).

- this did one thing atleast, that my router recognised the SBC, and
handed it over an IP address (192.168.1.2)

- then i installed LMS on the PC, but the squeezecenter didn't detect my
player.


obviously, am going wrong somewhere. hence, need your help. kindly
suggest what should be done.

my network specifics are:

- DHCP enabled
- Authentication type is WPA-PSK
- Encryption is TKIP/AES
- PSK is all letters (13 letters in all)

but these will come useful if i use the wireless mode for the SBC, isn't
it?! however, for now, am trying to set-up a wired connection (even
though the SBC's W/L card is functioning flawlessly) with my desktop,
just for testing-purpose. 

please advise.

thanks!



TheSeeker's Profile: http://forums.slimdevices.com/member.php?userid=61962
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-06-29 Thread Blisteringblue

My receiver suddenly dropped off the network?  Been fine for 2 years?
Usually a quick reboot brings it back to life but this time nothing?

Last resort put into INIT mode and ran Net::UDAP again.  Picked it up
straight away and set back up for DHCP and Wired and now can be seen
from LMS again.

Hope it's a one off and not a sign my receiver is on the way out.



'What am I listening to?' (http://www.last.fm/user/blisteringblue)

Boom, Receiver, iPhone iPeng  Squeezepad

Blisteringblue's Profile: http://forums.slimdevices.com/member.php?userid=22946
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-06-10 Thread mikerob

I've been using UDAP to set-up a Receiver and everything seemed to be
working ok, however I've noticed that if I stop and start LMS, LMS
doesn't recognise the Receiver until I switch the Receiver off and on
again.

The LMS interface says Your player was not found.  If I switch the
Receiver off and on again, it is recognised immediately by LMS.

Receiver is set up wired with DHCP and the router (Air Port Express) is
set-up to reserve a specific IP address for the Receiver.

Any ideas why LMS isn't recognising the player after LMS restarts?

Logitech Media Server Version: 7.7.3  on OSX 10.8.4

UDAP [1] (squeezebox 177d5e) list
bridging: 0
hostname: SBR Living Room
interface: 1
lan_gateway: 0.0.0.0
lan_ip_mode: 1
lan_network_address: 0.0.0.0
lan_subnet_mask: 255.255.255.0
primary_dns: 0.0.0.0
secondary_dns: 0.0.0.0
server_address: 0.0.0.0
squeezecenter_address: 10.0.1.12
squeezecenter_name: iMac Music
wireless_SSID: 
wireless_channel: 6
wireless_keylen: 0
wireless_mode: 0
wireless_region_id: 4
wireless_wep_key_0: 00
wireless_wep_key_1: 00
wireless_wep_key_2: 00
wireless_wep_key_3: 00
wireless_wep_on: 0
wireless_wpa_cipher: 3
wireless_wpa_mode: 1
wireless_wpa_on: 0
wireless_wpa_psk:



mikerob's Profile: http://forums.slimdevices.com/member.php?userid=835
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-04-16 Thread simi

I recognised a problem when I tried to save my WPA2 password. It
includes ' which is ignored when I set the password. ' misses in the
passoword when I list the settings. Is there any solution for this
issue?

Many thanks!



simi's Profile: http://forums.slimdevices.com/member.php?userid=59648
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-04-16 Thread garym

simi wrote: 
 I recognised a problem when I tried to save my WPA2 password. It
 includes ' which is ignored when I set the password. ' misses in the
 passoword when I list the settings. Is there any solution for this
 issue?
 
 Many thanks!

can you change your router WPA2 password so that it doesn't include such
characters?



garym's Profile: http://forums.slimdevices.com/member.php?userid=17325
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-02-28 Thread Rocketman3

Hi

I have a problem running the compiled version of UDAP that I can't find
any other reference to here. I have everything set up as descibed.
discover works fine it seems, discovering (what I presume is the
Squeezebox player) at 00:04:20:1b:7e:d5, but when I then type list it
always responds:

use of initialised value in printf at /PerlApp/Net/UDAP/Shell.pm line
489, FIND line 11.
use of initialised value in printf at /PerlApp/Net/UDAP/Shell.pm line
489, FIND line 11.
1 00:04:20:1b:7e:d5

And without listing the player I can go no further.

What could be wrong here?

Regards

Rocketman.



Rocketman3's Profile: http://forums.slimdevices.com/member.php?userid=55456
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-02-28 Thread Rocketman3

Oh and a footnote.

I bit my lip and took the pain of yet 2 more total factory resets and I
can swear on oath that the documentation offered by Logitech here:
http://logitech-en-amr.custhelp.com/app/answers/detail/a_id/11914/session/L2F2LzEvdGltZS8xMzQ1ODk2MjQ2L3NpZC8qbkVlKno0bA%3D%3D
and elsewhere is just plain wrong. It categorically does NOT happen like
that.

I assume that what's happened is that this documentation was right once
upon a time, but countless firmware upgrades have changed the truth of
the situation since then. Under absolutely no circumstances do I ever
get invited to select ‘Set up Receiver’  or anything of the sort. I
am, to put it politely, snookered.



Rocketman3's Profile: http://forums.slimdevices.com/member.php?userid=55456
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-02-28 Thread Rocketman3

Oh a little footnote:

The MAC address that was being found (1 00:04:20:1b:7e:d5) turns out to
be the address of the controller, not the player. The player can't be
found because it refuses to see the Ethernet. There's a hole in my
bucket, dear Liza dear Liza...

Of course I can't get it to see the ethernet because, despite what it
says in all the (ancient) Logitech documentation, doing a full reset
never leads you to a setup Reciever option. The reciever configures
itself (to WiFi) automatically every single time no matter what is
available to it. I think successive firmwae upgrades have made the
documentation redundant. The two no longer correspond.

This means my player is locked out of ever seeing a wired connection,
hence of ever working reliably. Did I say it plays about 1 track in
every 50 times I ask it to play? Wow. And the UDAP app? Well, it needs
to find the player on the ethernet nework before it can configure it,
so...



Rocketman3's Profile: http://forums.slimdevices.com/member.php?userid=55456
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-02-28 Thread toby10

Try temporarily disabling WiFi all together on your router.  Maybe
Receiver will offer a wired option if there is no WiFi?  Dunno, worth a
try.  :)



toby10's Profile: http://forums.slimdevices.com/member.php?userid=12553
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-02-28 Thread w3wilkes

Make sure you press the front button on the receiver long enough to get
the fast red blink. Just going to the slow red is not a full reset. Also
make sure you are ethernet connected when you do the reset. On mine
(running firmware 77) when you get past language setup on the controller
and get to setting up the receiver the first question it should ask is
if you want ethernet or wireless connection. Again, this won't happen if
you haven't got to the fast red blink (full factory reset). I believe if
you press and hold for at least 30 seconds you should get the fast red
blink. It will drop to either slow red blink or solid red (not positive
which) when released. This factory reset while wired is also required to
access the receiver if you do the Net::UDAP method.



w3wilkes's Profile: http://forums.slimdevices.com/member.php?userid=22973
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-01-25 Thread pomatomus

in short: thanks so much for this script, it was the only thing that let
me salvage my duet... I was /this/ close to buying a netbook to run an
emulator instead.

In case it's of use to others, here's what happened to me:

LMS 7.5.5 was getting horribly laggy both on the controller and the web
interface. Streaming was at first intermittent, then failed completely.
The duet receiver would sometimes have the blue light, sometimes the
white light.
Errors in the log indicated difficulty finding the player. I'm pretty
sure now that long timeouts on those sorts of errors were what was
causing 7.5.5 to behave so slowly.

I upgraded to 7.7.2 (including controller firmware), and while the newer
version dealt with the no-player problem much better, and had much
faster rescan speeds, the underlying problem was still there - duet
receiver flaking out.

I looked into the net::udap thing and got the Perl rigamarole working
(the older compiled version had a lot more error messages it seemed). It
turns out there was a garbage value in one of the fields that was
totally buggering up the networking. Once I fixed that and saved it,
back to normal!

Then, I took it a step further, assigned a static IP and set the network
to wired, then hung the box off of the Amp SR2g wireless
extender/repeater we use to get decent video streaming to the basement.
So, now all the music is coming in at N speeds instead of G. The whole
system seems a lot more responsive than before, but I'm not sure if
that's a function of 7.7.2 or N vs G, or both.



pomatomus's Profile: http://forums.slimdevices.com/member.php?userid=34040
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


Re: [slim] Net::UDAP - SqueezeBox Receiver configuration tool

2013-01-25 Thread robinbowes

pomatomus wrote: 
 in short: thanks so much for this script, it was the only thing that let
 me salvage my duet... I was /this/ close to buying a netbook to run an
 emulator instead.

Glad you found it useful.

I must throw the code up on github some day...

R.



robinbowes's Profile: http://forums.slimdevices.com/member.php?userid=480
View this thread: http://forums.slimdevices.com/showthread.php?t=57861

___
discuss mailing list
discuss@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/discuss


  1   2   3   4   5   >