<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How set network parameters on linux machine for all time ? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702236#M21175</link>
    <description>Debian uses /etc/network/interfaces&lt;BR /&gt;&lt;BR /&gt;You will need at least the following for the&lt;BR /&gt;eth0 interface&lt;BR /&gt;&lt;BR /&gt;auto eth0&lt;BR /&gt;iface eth0 inet static&lt;BR /&gt;   address 10.1.1.1&lt;BR /&gt;   netmask 255.0.0.0&lt;BR /&gt;&lt;BR /&gt;You may also want to set the gateway, but it&lt;BR /&gt;should not be required to connect the two&lt;BR /&gt;computers.  See 'man interfaces' for more &lt;BR /&gt;data.&lt;BR /&gt;</description>
    <pubDate>Wed, 04 Jan 2006 12:02:37 GMT</pubDate>
    <dc:creator>Bill Thorsteinson</dc:creator>
    <dc:date>2006-01-04T12:02:37Z</dc:date>
    <item>
      <title>How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702232#M21171</link>
      <description>Hi all, &lt;BR /&gt;at home I have two computers &lt;BR /&gt;one-dual boot FreeBSD 6.0 and Debian Sarge&lt;BR /&gt;second- Debian Sarge and winXP.&lt;BR /&gt;I used crossover cable to connect them and they work ok.&lt;BR /&gt;I assigned them IP adresses 10.1.1.1 and 10.1.1.2 private network, but when I reboot debian machines every time I must type &lt;BR /&gt;netconfig 10.1.1.1 netmask 255.0.0.0 and on second machine same to establish network, when I reboot and chose BSD network parameters are as they were before, and I should not type network parameters again. So my question is what is worong with my Debian machines and why my nerwork parameters changing every time.&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Wed, 04 Jan 2006 06:06:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702232#M21171</guid>
      <dc:creator>debian111</dc:creator>
      <dc:date>2006-01-04T06:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702233#M21172</link>
      <description>Hi debian111,&lt;BR /&gt;&lt;BR /&gt;try with these two command :&lt;BR /&gt;"ifconfig" and "route add"&lt;BR /&gt;&lt;BR /&gt;Maybe something like this should work&lt;BR /&gt;(taken from deb manual):&lt;BR /&gt;&lt;BR /&gt;     # ifconfig eth0 inet down&lt;BR /&gt;     # ifconfig eth0 inet up 192.168.0.111 \&lt;BR /&gt;                netmask 255.255.255.0 broadcast                 192.168.0.255&lt;BR /&gt;     # route add -net 10.0.0.0 netmask 255.0.0.0 gw 192.168.0.1 dev eth0&lt;BR /&gt;&lt;BR /&gt;regards</description>
      <pubDate>Wed, 04 Jan 2006 06:34:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702233#M21172</guid>
      <dc:creator>Piergiacomo Perini</dc:creator>
      <dc:date>2006-01-04T06:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702234#M21173</link>
      <description>You should check your /etc/network/interfaces file. &lt;BR /&gt;&lt;BR /&gt;Do you have the line beginning with the word "auto"?&lt;BR /&gt;&lt;BR /&gt;--------------------------------------&lt;BR /&gt;# The primary network interface&lt;BR /&gt;auto eth0&lt;BR /&gt;iface eth0 inet static&lt;BR /&gt;        address 10.1.1.1&lt;BR /&gt;        netmask 255.0.0.0&lt;BR /&gt;        network 10.0.0.0&lt;BR /&gt;        broadcast 10.255.255.255&lt;BR /&gt;--------------------------------------&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs</description>
      <pubDate>Wed, 04 Jan 2006 06:42:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702234#M21173</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2006-01-04T06:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702235#M21174</link>
      <description>For redhat we can create a file under /etc/sysconfig/network-scripts/ifcfg-eth0&lt;BR /&gt;not sure about path in debian&lt;BR /&gt;&lt;BR /&gt;DEVICE=eth0&lt;BR /&gt;ONBOOT=yes&lt;BR /&gt;BOOTPROTO=none&lt;BR /&gt;IPAddress= 10.1.1.1&lt;BR /&gt;Subnet=255.255.255.0&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Jan 2006 07:31:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702235#M21174</guid>
      <dc:creator>Vipulinux</dc:creator>
      <dc:date>2006-01-04T07:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702236#M21175</link>
      <description>Debian uses /etc/network/interfaces&lt;BR /&gt;&lt;BR /&gt;You will need at least the following for the&lt;BR /&gt;eth0 interface&lt;BR /&gt;&lt;BR /&gt;auto eth0&lt;BR /&gt;iface eth0 inet static&lt;BR /&gt;   address 10.1.1.1&lt;BR /&gt;   netmask 255.0.0.0&lt;BR /&gt;&lt;BR /&gt;You may also want to set the gateway, but it&lt;BR /&gt;should not be required to connect the two&lt;BR /&gt;computers.  See 'man interfaces' for more &lt;BR /&gt;data.&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Jan 2006 12:02:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702236#M21175</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2006-01-04T12:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702237#M21176</link>
      <description>I will try your suggestions today later, and I promise I will assign points tommorow.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you</description>
      <pubDate>Wed, 04 Jan 2006 12:20:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702237#M21176</guid>
      <dc:creator>debian111</dc:creator>
      <dc:date>2006-01-04T12:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: How set network parameters on linux machine for all time ?</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702238#M21177</link>
      <description>I think it will work...&lt;BR /&gt;thank you.</description>
      <pubDate>Wed, 04 Jan 2006 12:22:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-set-network-parameters-on-linux-machine-for-all-time/m-p/3702238#M21177</guid>
      <dc:creator>debian111</dc:creator>
      <dc:date>2006-01-04T12:22:05Z</dc:date>
    </item>
  </channel>
</rss>

