Ahi amigos, bom tenho un server cual pego sinal d un AP, tudo bem ate aki eu fiz o ele levantar automaticamente sem configurar a placa d rede da minha rede interna o Cartão e como si não pegase uma ip eu tenho k façer um /etc/init.d/networking restart pra ele pegar a Ip, o essid o nwid e demais ele pega tem alguma forma d façer o cartão levantar automaticamente....eki estam minha configuraçao do /etc/network/interfaces e da PCMCIA, /etc/pcmcia/network.opts
Bom amigos, disculpem se eu errei em alguma coisa so iniciante....eu fiz um man iwconfig mais acho k esse não e o problema....eu acho k pode ser alguma coisa d runlevel,,,tinha lido isso, ok...muito obrigadoooo. Abraços

#/etc/network/interfaces

auto lo eth0 eth1
iface lo inet loopback

iface eth0 inet static
address 192.168.11.1
netmask 255.255.255.0
network 192.168.11.0
broadcast 192.168.11.255
gateway 192.168.11.1

iface eth1 inet static
address 172.16.1.26
netmask 255.255.255.0
network 172.16.1.0
broadcast 172.16.1.255
gateway 172.16.1.254

#/etc/pcmcia/network.opts
case "$ADDRESS" in
*,*,*,*)
INFO="Sample private network setup"
# Transceiver selection, for some cards -- see 'man ifport'
IF_PORT=""
# Use BOOTP (via /sbin/bootpc, or /sbin/pump)? [y/n]
BOOTP="n"
# Use DHCP (via /sbin/dhcpcd, /sbin/dhclient, or /sbin/pump)? [y/n]
DHCP="y"
# If you need to explicitly specify a hostname for DHCP requests
DHCP_HOSTNAME=""
# Use PPP over Ethernet (via the pppoe package)? [y/n]
PPPOE="n"
# Use WHEREAMI (via the whereami package)? [y/n]
WHEREAMI="n"
# Host's IP address, netmask, network address, broadcast address
IPADDR="172.16.1.26"
NETMASK="255.255.255.0"
NETWORK="172.16.1.0"
BROADCAST="172.16.1.255"
# Gateway address for static routing
GATEWAY="172.16.1.254"
# Things to add to /etc/resolv.conf for this interface
DOMAIN=""
SEARCH=""
# The nameserver IP addresses specified here complement the
# nameservers already defined in /etc/resolv.conf. These nameservers
# will be added to /etc/resolv.conf automatically when the PCMCIA
# network connection is established and removed from this file when
# the connection is broken.
DNS_1=""
DNS_2=""
DNS_3=""
# NFS mounts, should be listed in /etc/fstab
MOUNTS=""
# If you need to override the interface's MTU...
MTU=""
# For IPX interfaces, the frame type and network number
IPX_FRAME=""
IPX_NETNUM=""
# Run ipmasq? [y/n] (see the Debian ipmasq package)
IPMASQ="n"
# Extra stuff to do after setting up the interface
start_fn () { return; }
# Extra stuff to do before shutting down the interface
stop_fn () { return; }
# Card eject policy options
NO_CHECK=n
NO_FUSER=n
;;
esac

# This tries to use Debian's network setup in /etc/network/interfaces
# if no settings are given higher up in this file. You can delete it
# if that isn't desired.

is_true $DHCLIENT || \
is_true $PUMP || is_true $BOOTP || is_true $DHCP || \
[ -x /proc/sys/kernel/hotplug ] || \
if [ -z "$IPADDR" -a -f /etc/network/interfaces ] ; then
INFO="Debian network setup"
start_fn () {
log /sbin/ifup $1
}
stop_fn () {
log /sbin/ifdown $1
}
fi