Twitter iPhone pliant OnePlus 11 PS5 Disney+ Orange Livebox Windows 11

[FreeBSD 4.10]Utilisation de 2 cartes réseaux pcmcia

1 réponse
Avatar
djdomics
Bonjour :-)

J'utilise un portable Toshiba 100CS, sur lequel j'ai installé FreeBSD
4.10. Pour l'installation j'ai utilisé une carte pcmcia 3C574-TX.
Mais par la suite j'aimerais utilisé mes 2 cartes réseaux 3C574-TX en
même temps.

Le problème c'est qu'il y a qu'une seule carte qui est reconnue :(

Voici mes paramètres dans mon rc.conf :

pccard_enable="YES"
pccard_ifconfig="DHCP"
pccard_beep="2"
pccard_mem="DEFAULT"
pccardd_flags=" -i 10"
pccard_conf="/etc/defaults/pccard.conf"

Et voici ce que détecte le kernel :

%dmesg | grep pccard
pccard0: <PC Card 16-bit bus (classic)> on pcic0
pccard1: <PC Card 16-bit bus (classic)> on pcic0
pccard: card inserted, slot 0
pccard: card inserted, slot 1
ep0: <3Com 3C574B, Megahertz 3CCFE574BT or Fast Etherlink 3C574-TX> at
port 0x24 0-0x25f irq 10 flags 0x1 slot 0 on
pccard0

(je tiens à signaler ques les 2 cartes réseaux fonctionnent
correctement)

Je vous serais très réconnaissant de votre aide.

Bye

1 réponse

Avatar
djdomics
Bon finalement j'ai réussi, mais c'était pas évident surtout pour un n00b :)

J'ai créer mon propre /etc/pccard.conf avec :

# Generally available IO ports
io 0x240-0x360
# Generally available IRQs (Built-in sound-card owners remove 5)
irq 3 5 10 11 15
# Available memory slots
memory 0xd4000 96k

# 3Com Etherlink III 3C589, 3C589B, 3C589C, 3C589D
card "3Com Corporation" "/3C589/"
config auto "ep2" ? 0x10
insert /etc/pccard_ether $device start
remove /etc/pccard_ether $device stop

# 3Com Megahertz 574B same as 3Com Fast Etherlink 3C574B
card "3Com" "Megahertz 574B"
config auto "ep0" ? 0x1
config auto "ep1" ? 0x1
insert /etc/pccard_ether $device start
remove /etc/pccard_ether $device stop

et ensuite configuré son rc.conf pour prendre en compte ce fichier ;)
rc.conf :

pccard_enable="YES"
#pccard_ifconfig="DHCP"
pccard_mem="DEFAULT"
pccard_conf="/etc/pccard.conf"

J'espère que ca servira un jour à quelqu'un :P

Bye