-----Original Message----- From: Eric Sharkey [mailto:[email protected]] Sent: Thursday, March 05, 2009 6:21 AM To: JC PTG Cc: Tom Metro; [email protected] Subject: Re: [Mvpmc-users] MediaMVP, and Port 69 error, and can't connect
On Thu, Mar 5, 2009 at 1:56 AM, JC PTG <[email protected]> wrote: > When I run "lsof -l udp:69" I get the following > > lsof: status error on udp:69: No such file or directory > lsof 4.78 You need to use -i not -l. >> Are you using version H or newer MVP hardware? > > I am using the older model. Good. That makes it easier. > I notice that in the command above I am telling tftp where to get the file > and where to send it. How does MediaMVP know where to get this file? It should be told where to get it by the DHCP server. For example, here is the portion of the dhcpd.conf I'm using which is relevant to my mvp: group { next-server 192.168.34.1; # IP address of your TFTP server host mvp { # NOTE: Change the hardware ethernet to the MAC address of your actual MVP hardware ethernet 00:0d:fe:00:58:dd; fixed-address 192.168.34.13; filename "dongle.bin.mvpmc"; option root-path "/home/mvp,rsize=4096,wsize=4096,nolock"; } } You can see this has both the IP address of the tftp server and the filename of the dongle file. When the MVP does a dhcp request, the dhcp server sends back this information along with the MVP ip address and other DHCP info. My /etc/dhcp3/dhcp.conf file is listed below default-lease-time 600; max-lease-time 7200; >option subnet-mask 255.255.255.0; option broadcast-address 10.0.0.255; >option domain-name-servers 10.0.0.99, 208.67.222.222; >option domain-name local; >allow booting; >allow bootp; subnet 10.0.0.0 netmask 255.255.255.0 { range 10.0.0.104 10.0.0.134; } group { next-server 10.0.0.119; host MVP1 { hardware ethernet 00:0F:22:00:02:79; fixed-address 10.0.0.103; filename "dongle.bin.mvpmc"; option root-path "/home/mvp,rsize=4096,wsize=4096,nolock"; } } log-facility local7; authoritative; Now I get the following errors when I try to restart The error was: Internet Systems Consortium DHCP Server V3.1.1 Copyright 2004-2008 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/ /etc/dhcp3/dhcpd.conf line 2: expecting a parameter or declaration max-lease-time 7200; ^ /etc/dhcp3/dhcpd.conf line 4: expecting a parameter or declaration option broadcast-address 10.0.0.255; ^ /etc/dhcp3/dhcpd.conf line 5: expecting a parameter or declaration >option domain-name-servers 10.0.0.99, 208.67.222.222; ^ /etc/dhcp3/dhcpd.conf line 6: expecting a parameter or declaration >option domain-name local; ^ /etc/dhcp3/dhcpd.conf line 7: expecting a parameter or declaration >allow booting; ^ Configuration file errors encountered -- exiting Thanks John jcoman ------------------------------------------------------------------------------ Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and cut costs with open source participation -Receive a $600 discount off the registration fee with the source code: SFAD http://p.sf.net/sfu/XcvMzF8H _______________________________________________ Mvpmc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mvpmc-users mvpmc wiki: http://mvpmc.wikispaces.com/
