<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    I want to have static ip<br>
    <br>
    so i changed /etc/network/interfaces<br>
    <br>
    <blockquote># /etc/network/interfaces -- configuration file for
      ifup(8), ifdown(8)<br>
      <br>
      # The loopback interface<br>
      auto lo<br>
      iface lo inet loopback<br>
      <br>
      # Wireless interfaces<br>
      iface wlan0 inet dhcp<br>
              wireless_mode managed<br>
              wireless_essid any<br>
              wpa-driver wext<br>
              wpa-conf /etc/wpa_supplicant.conf<br>
      <br>
      iface atml0 inet dhcp<br>
      <br>
      # Wired or wireless interfaces<br>
      auto eth0<br>
      iface eth0 inet static<br>
              address 192.168.2.8<br>
              netmask 255.255.255.0<br>
              network 192.168.2.254<br>
              gateway 192.168.2.1<br>
      iface eth1 inet dhcp<br>
      <br>
      # Ethernet/RNDIS gadget (g_ether)<br>
      # ... or on host side, usbnet and random hwaddr<br>
      iface usb0 inet static<br>
              address 192.168.7.2<br>
              netmask 255.255.255.0<br>
              network 192.168.7.0<br>
              gateway 192.168.7.1<br>
      <br>
      # Bluetooth networking<br>
      iface bnep0 inet dhcp<br>
    </blockquote>
    <br>
    <br>
    do  ifdown eth0<br>
          ifup eth0 <br>
    <br>
    and I can connect to static ip<br>
    <br>
    after reboot   there is no connection to the static ip possible  and
    a <u><big>new</big></u> dynamic ip is taken via dhcp.<br>
    <br>
    i do ifdown and ifup again. now i can connect via ssh to static and
    the dynamic ip.<br>
    <br>
    that is normal?<br>
    <br>
    <br>
    Joerg<br>
    <br>
  </body>
</html>