<html><head><style>body{font-family:Helvetica,Arial;font-size:13px}</style></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">No problem :D</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">If your router is configured for 192.1681.1 and you are using the 192.168.1.0/24 range already at home. You’ll need to configure on the PXE boot host - eth1 to use something else, such as 192.168.2.0/24.  The guest machine that will be PXE booted will need an IP in the 192.168.2.0/24 range also. The host configured with both subnets will be performing NAT and keeping track of connections.  While twice NAT is not ideal for production, it should be fine for this project. If you run into any issues let me know.</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div> <div id="bloop_sign_1389471661569716992" class="bloop_sign"><span style="font-family:helvetica,arial;font-size:13px"></span>-- <br>Adam Kaminski<br></div> <br><p style="color:#A0A0A8;">On January 11, 2014 at 9:18:05 AM, J Neveau (<a href="mailto://neveauj@gmail.com">neveauj@gmail.com</a>) wrote:</p> <blockquote type="cite" class="clean_bq"><span><div><div>


<title></title>


<div dir="ltr">Thanks for that information, Adam.  I've never
done much reading on iptables as I've never had the need for it in
the past.
<div><br></div>
<div>I may still hook those two machine back together and give it a
try, just for the sake of getting it to work.
<div><br></div>
<div>So, I'll have to assign and IP address to the client machine
that is the same subnet as the IP address that the host machine
gets from the router?? i.e. - 192.168.1.X</div>
<div>The router wont have an issue with that, simply because it is
only seeing the traffic as coming from the connected machine? Is
that correct?</div>
<div>
<div><br></div>
<div>And I like that avatar photograph!  </div>
</div>
</div>
</div>
<div class="gmail_extra"><br>
<br>
<div class="gmail_quote">On Sat, Jan 11, 2014 at 12:04 AM, Adam
Kaminski <span dir="ltr"><<a href="mailto:adam@adamkaminski.com" target="_blank">adam@adamkaminski.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word">
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
If I followed along in this thread,</div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
<br></div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
You’ll need to enable ip forwarding on the box you want to send
traffic through,</div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
<br></div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
echo 1 > /proc/sys/net/ipv4/ip_forward</div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
<br></div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
<div style="margin:0px">iptables -t nat -A POSTROUTING -o eth0 -j
MASQUERADE</div>
</div>
<div style="font-family:Helvetica,Arial;font-size:13px;color:rgba(0,0,0,1.0);margin:0px;line-height:auto">
<div style="margin:0px">iptables -A FORWARD -i eth0 -o eth1 -m
state --state RELATED,ESTABLISHED -j ACCEPT</div>
<div style="margin:0px">iptables -A FORWARD -i eth1 -o eth0 -j
ACCEPT</div>
<div style="margin:0px"><br></div>
<div style="margin:0px">This assumes that eth0 is the outbound
interface and eth1 will need to be configured with a private
address/range such as <a href="http://192.168.1.0/24" target="_blank">192.168.1.0/24</a>.  The host connected to eth1 will
need to be configured in the same range as eth1 on host acting as
gateway <a href="http://192.168.1.0/24" target="_blank">192.168.1.0/24</a></div>
<div style="margin:0px"><br></div>
<div style="margin:0px">The pxe boot daemon would most likely just
need to be configured to listen on eth1 and would still be able to
pxe boot the host and forward traffic if the client needed to reach
the internet.</div>
<div style="margin:0px"><span class="HOEnZb"><font color="#888888"><br></font></span></div>
</div>
<div><span class="HOEnZb"><font color="#888888">-- <br>
Adam Kaminski<br></font></span></div>
<div>
<div class="h5"><br>
<p style="color:#a0a0a8">On January 10, 2014 at 11:00:22 PM, J
Neveau (<a href="mailto://neveauj@gmail.com" target="_blank">neveauj@gmail.com</a>) wrote:</p>
<blockquote type="cite">
<div>
<div>
<div dir="ltr"><span>Thanks for the suggestions, guys!
 </span>
<div><span><br></span></div>
<div><span>I was thinking of IP-tables too.  I know it needs
some sort of forwarding of the traffic from the TFTP server to the
main NIC that goes to the router.  Technical reading for
another time, I suppose.</span></div>
<div><span><br></span></div>
<div><span>My plan was to use this very out-dated machine to simply
play internet radio streams via the console given that it uses very
little energy.  I like having background music in my house
when I'm home </span></div>
<div><span>but I can absolutely no longer listen to any commercial
radio stations; the advertising and yackity-yack is
mind-numbing...that's an entirely different
conversation! </span></div>
<div><span><br></span></div>
<div><span>I put the Debian network install disk ISO on to my USB
flash drive and did a base install.  Building the rest from
that point without the xorg and all of that stuff.</span></div>
<div><span><br></span></div>
<div><span>Cheers...</span></div>
<div><span><br></span></div>
<div><span><br></span></div>
</div>
<div class="gmail_extra"><span><br>
<br></span>
<div class="gmail_quote"><span>On Fri, Jan 10, 2014 at 7:46 PM,
Nick Campbell <span dir="ltr"><<a href="mailto:campbellnick000@gmail.com" target="_blank">campbellnick000@gmail.com</a>></span>
wrote:<br></span>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<p dir="ltr">Greetings,</p>
<p dir="ltr">With the configuration you described here you'd
probably want to look at iptables on the host machine for all of
the forwarding-fu.  It's as not difficult as it sounds but it
can get somewhat confusing.  I've never personally attempted
it with a direct connection to the client but it *shouldn't* be
much different.</p>
<p dir="ltr">It is a tad overkill in your situation but If you
still want to give it a shot I'd be happy to help you try to get it
working once I am back at a keyboard (software keyboards are an
exercise in insanity).  If you would still like to give it a
go let me know.</p>
<p dir="ltr">Additionally,  hello GLLUG list! :)</p>
<p dir="ltr">--<br>
Nick Campbell<br>
<a href="https://squirreltelepathy.info" target="_blank">https://squirreltelepathy.info</a></p>
<div>
<div>
<div class="gmail_quote">On Jan 10, 2014 4:13 PM, "J Neveau"
<<a href="mailto:neveauj@gmail.com" target="_blank">neveauj@gmail.com</a>> wrote:<br type="attribution">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Well, it's one of those things where I don't "have"
to use a PXE boot.  But I just wanted to see if I could figure
out how to do it using this machine:
<div><br></div>
<div><a href="http://www.fic.com.tw/product/iona603.aspx" target="_blank">http://www.fic.com.tw/product/iona603.aspx</a> 
obviously, no optical drive.  I was able to squeeze a
60gigabyte laptop IDE drive into it though!<br>
<div><br></div>
<div>All of the stuff I've been finding online is for configuring
the client machine (target of install) with it being a part of the
regular network, i.e.-attached</div>
<div>to the router like the other machines, including the one with
the boot image files and such.</div>
<div><br></div>
<div>My configuration was to have the client machine directly
attached to the host machine (via eth0)  which was then
attached to the router for web access</div>
<div>(via eth1).  The host machine has two NICs built onto the
motherboard.</div>
<div><br></div>
<div>Unfortunately, with my limited networking knowledge (enough to
get myself into trouble) I was not able to figure out how to use
the host machine not only as</div>
<div>the PXE boot host with the install files, but also the bridge
to allow the client doing the Debian install to have internet
access to complete the installation via</div>
<div>a mirror.</div>
<div><br></div>
<div>I ended up just using a Debian installation ISO on a 1
gigabyte USB flash memory stick  and ran the network cable
direct to the router.  So far, so good. If I</div>
<div>can get basic Debian install on the AMD Geode, I want to try
building a cut-down, streamlined kernel for it; again, just to see
if I can get it to work.</div>
<div><br></div>
<div>I didn't want to get too carried away with my workstation
machine (host) as I mainly use it to edit video/audio; no telling
what I might have done had I started trying to</div>
<div>set up a mirror on that machine for the client to
use....eek.</div>
<div><br></div>
<div>Thanks for the suggestions, though.  I appreciate the
input!</div>
<div><br></div>
<div><br></div>
</div>
</div>
<div class="gmail_extra"><br>
<br>
<div class="gmail_quote">On Fri, Jan 10, 2014 at 3:22 PM, Patrick
Goupell <span dir="ltr"><<a href="mailto:patrick@upmerchants.com" target="_blank">patrick@upmerchants.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><br>
On 01/09/2014 10:05 PM, J Neveau wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Greetings everyone,<br>
<br>
**initial disclaimer; new to this stuff, not good with
networking**<br>
<br>
I was able to get a PXE boot started for a Debian installation on
an AMD Geode machine.  The installer begins fine and it gets
to the point of asking for a mirror to use for installation
packages. I select the main Debian mirror.  This is where it
fails as it seems unable to access the internet.  Alt-F4 shows
messages on the client ending with:<br>
<br></blockquote>
<br></div>
Do you have to do a PXE boot?<br>
<br>
Can you boot an ISO image and install from that?<br>
<br>
After the install then do the final setup  for what you
need.<span><font color="#888888"><br>
<br>
--<br>
Patrick Goupell<br>
<br>
Are you free?  Find out at <a href="http://www.sedm.org/" target="_blank">http://www.sedm.org/</a><br>
Income taxes?  Find out at <a href="http://www.whatistaxed.com" target="_blank">http://www.whatistaxed.com</a></font></span>
<div>
<div><br>
<br>
_______________________________________________<br>
linux-user mailing list<br>
<a href="mailto:linux-user@egr.msu.edu" target="_blank">linux-user@egr.msu.edu</a><br>
<a href="http://mailman.egr.msu.edu/mailman/listinfo/linux-user" target="_blank">http://mailman.egr.msu.edu/mailman/listinfo/linux-user</a><br>
</div>
</div>
</blockquote>
</div>
<br></div>
<br>
_______________________________________________<br>
linux-user mailing list<br>
<a href="mailto:linux-user@egr.msu.edu" target="_blank">linux-user@egr.msu.edu</a><br>
<a href="http://mailman.egr.msu.edu/mailman/listinfo/linux-user" target="_blank">http://mailman.egr.msu.edu/mailman/listinfo/linux-user</a><br>

<br></blockquote>
</div>
</div>
</div>
</blockquote>
</div>
<br></div>
_______________________________________________<br>
linux-user mailing list<br>
<a href="mailto:linux-user@egr.msu.edu" target="_blank">linux-user@egr.msu.edu</a><br>
<a href="http://mailman.egr.msu.edu/mailman/listinfo/linux-user" target="_blank">http://mailman.egr.msu.edu/mailman/listinfo/linux-user</a><br>
</div>
</div>
</blockquote>
</div>
</div>
</div>
</blockquote>
</div>
<br></div>


</div></div></span></blockquote></body></html>