PCMCIA unter SuSE Linux 8.0

Post Reply
Message
Author
kleinermann

PCMCIA unter SuSE Linux 8.0

#1 Post by kleinermann »

Hi!

Ich will unter SuSE Linux 8.0 meine neue PCMCIA Karte zum laufen bekommen. Typ : TL-5320M 10/100 C Card
Sie wird leider nicht automatisch von YaST konfiguriert und somit habe ich mir das neue pcmcia-cs-3.2.3.tar.gz Packet gezogen und soweit installiert.
Nur von der konfiguration habe ich keine Ahnung. Es wird lediglich gesagt, dass man Einstellungen in /etc/pcmcia/network.opts vornehmen soll.
case "$ADDRESS" in
*,0,*,*)
INFO="This scheme is configured by YaST"
# Transceiver selection, for some cards -- see 'man ifport'
IF_PORT=""
# Use BOOTP (via /sbin/bootpc)? [y/n]
BOOTP="n"
# Use DHCP (via /sbin/dhcpcd or /sbin/dhclient)? [y/n]
DHCP="y"
# Use /sbin/pump for BOOTP/DHCP? [y/n]
PUMP="n"
# Host's IP address, netmask, network address, broadcast address
IPADDR=""
NETMASK=""
NETWORK=""
BROADCAST=""
# Gateway address for static routing
GATEWAY=""
# Things to add to /etc/resolv.conf for this interface
DOMAIN=""
SEARCH=""
DNS_1=""
DNS_2=""
DNS_3=""
# NFS mounts, should be listed in /etc/fstab
MOUNTS=""
# For IPX interfaces, the frame type and network number
IPX_FRAME=""
IPX_NETNUM=""
# Extra stuff to do after setting up the interface
start_fn () { return; }
# Extra stuff to do before shutting down the interface
stop_fn () { return; }
;;
*,1,*,*)
INFO="This scheme is configured by myself"
# Transceiver selection, for some cards -- see 'man ifport'
IF_PORT=""
# Use BOOTP (via /sbin/bootpc)? [y/n]
BOOTP="n"
# Use DHCP (via /sbin/dhcpcd or /sbin/dhclient)? [y/n]
DHCP="n"
# Use /sbin/pump for BOOTP/DHCP? [y/n]
PUMP="n"
# Host's IP address, netmask, network address, broadcast address
IPADDR="192.168.0.99"
NETMASK="255.255.255.0"
NETWORK="192.168.0.0"
BROADCAST="192.168.0.255"
# Gateway address for static routing
GATEWAY=""
# Things to add to /etc/resolv.conf for this interface
DOMAIN=""
SEARCH=""
DNS_1=""
DNS_2=""
DNS_3=""
# NFS mounts, should be listed in /etc/fstab
MOUNTS=""
# For IPX interfaces, the frame type and network number
IPX_FRAME=""
IPX_NETNUM=""
# Extra stuff to do after setting up the interface
start_fn () { return; }
# Extra stuff to do before shutting down the interface
stop_fn () { return; }
;;
esac


So habe ich das file verändert. Nach dem Neustart läuft trotzdem nichts.

bye kleinermann

kleinermann

Re: PCMCIA unter SuSE Linux 8.0

#2 Post by kleinermann »

Der zweite Teil aus network.opts steht natürlich nicht mit in der Datei.

Post Reply