petit problème compilation

Le MNF (Multi Network Firewall) est un des produits pare-feu les plus richement pourvus en fonctionnalités du marché. Il est basé sur un kernel Linux 2.4 sécurisé. Ce forum est également destiné à accueillir tous les posts concernants les distributions Mandriva (anciennement Mandrake)

Modérateur: modos Ixus

petit problème compilation

Messagepar casse gueule » 24 Juin 2004 09:53

Bonjour
je cherche la procédure pour compiler un drivers sous linux.

Je possède une carte réseau DLINK DFE-530TX (et le drivers constructeur sous linux), dans le fichier txt il est dit que le drivers doit être compile pour qu’un fichier « rhinefet.o »

Je ne sais pas comment faire, faut il executer le fichier makefile ou le compiler et avec quoi ?

Merci de m’aider je suis débutant
J ai installe mandrake 10 avec les outils de développent, j ai besoin du drivers pour faire fonctionner une « mnf»


Fichier TXT

‘D-Link DFE-530TX PCI Fast Ethernet Adapter Installation
for Linux

v4.24 Jan. 2003




Introduction:
=============

The instructions listed below are for linux driver installation. You must
compile the source code to generate rhinefet.o and use insmod command to
insert rhinefet.o as module.


Contents of the Subdirectory:
=============================

linux.txt This file.
rhine_main.c The linux core driver source code file
rhine_proc.c The linux core driver source code file
rhine_wol.c The linux core driver source code file
rhine_drv.h The linux core dirver header file
rhine_wol.h The linux core driver header file
rhine_proc.h The linux core driver header file
rhine.h The linux core driver header file
Makefile Makefile for generating driver object file
rhine_vmns.c The vmns driver support source file
rhine_vmns.h The vmns driver support header file
rhine_cfg.h The vmns driver support header file
kcompat.h The linux core driver header file

Kernel Supported
================
This driver support linux kernel version 2.2.x and 2.4.x now.

Installation
============
Please enter the following commands at the UNIX prompt. Remember, UNIX is
case sensitive.

1) Create a temporary directory:
mkdir /temp

2) Change to the temporary directory:
cd /temp

2) Copy driver (dlkfet-4.24.tar.gz) from released CD, (If you didn't mount
CD drive before, you can type
'mkdir /cdrom'
'mount -r -t iso9660 -o conv=auto /dev/cdrom /cdrom' and use
'cp /cdrom/LINUX/dlkfet-4.24.tar.gz /temp'
command to copy the driver to the temporary directory):
cp /<cdrom_mount_point>/LINUX/dlkfet-4.24.tar.gz .

3) untar the archive file:

tar xzvf dlkfet-4.24.tar.gz
cd dlkfet-4.24

4) Compile the driver source files and it will generate rhinefet.o, and
copy it to correct driver installation path (The installation directory
is different in different kernel versions. In 2.4.x kernel, the path is
/lib/modules/KERNEL_VERSION/kernel/drivers/net/, and in 2.2.x kernel,
the path is /lib/modules/KERNEL_VERSION/net/, the KERNEL_VERSION (see
above) means the kernel version of your Linux distribution. If you don't
know your kernel version , please run 'uname -r' command in command
line. The kernel version will look like '2.2.16', '2.4.2-2smp' etc.) :
make install

5) Check configuration file (/etc/modules.conf or /etc/conf.modules,it
depend on your Linux distribution) for loading kernel modules. Make sure
there is the following content in the configuration file, where # is
interface number (eg: alias eth0 rhinefet):
alias eth# rhinefet

6) Reboot now:
shutdown -r now

7) Install your driver module (If the driver module is in the wrong place,
an error message will appear, and say that can't find the driver
module):
insmod rhinefet

8) Use ifconfig command to assign the IP address, where # is network
interface number:
ifconfig eth# <IP>

9) Check the interface works:
ping <remote_host_IP>


Uninstallation
==============
Please enter the following commands to uninstall your driver:
make uninstall

Note
====
1) Make sure the link file /usr/src/linux (or /usr/src/linux-2.4) is linked
to correctly kernel sources directory (eg: if you run 'uname -r', it
appears "2.4.2-2", then the link file must be linked to
/usr/src/linux-2.4.2 directory, or you will fail in compiling),
and make sure there are kernel header files in /usr/src/linux/include
directory (or /usr/src/linux-2.4/include), we need kernel header files
in compling.

2) If you can't install driver in SUSE Linux using insmod or modprobe
commands, and error messages appear (see below), please run 'uname -r'
in command line. And make sure the result of 'uname -r' (eg: 2.4.2-4GB)
is the same with the definition of UTS_RELEASE in
/usr/src/linux/include/linux/version.h. If not, please modify the
definition of UTS_RELEASE in /usr/src/linux/include/linux/version.h.

rhinefet.o: kernel-module version mismatch
rhinefet.o was compiled for kernel version 2.4.2
while this kernel is version 2.4.2-4GB.

3) Make sure that your kernel is built with network, fast_ethernet
and module support. Otherwise, you have to rebuild your kernel (see
below).
1. Go to /usr/src/linux (or /usr/src/linux-2.4) directory:
cd /usr/src/linux
2: Run 'make menuconfig' or 'make config' in text mode, or 'make
xconfig' in graphic mode.
3: Mark the options list above.
4: Exit and rebuild your kernel:
make dep;make clean;make bzImage
The file 'bzImage' will be at /usr/src/linux/arch/i386/boot/bzImage
5: Modify /etc/lilo.conf.(this file specifies where kernel image is)
6: Run 'lilo'
7: Reboot, and select the correct kernel image to boot your system.

4) You can use the utility (like netconfig, linuxconf) in your Linux
distribution to set your network parameters(like ip,gateway). These
parameters will be used at boot time. The following is the demonstration
to show how to use linuxconf (it's a utitlity in RedHat Linux 6.x) set
the network paramters.
1. Run linuxconf:
linuxconf
2. Enter setting in the Config/Networking/Client tasks/Basic host information/
and fill out the following information. Where 'xxx' is the IP address
what you have.
IP address: xxx.xxx.xxx.xxx
Netmask: 255.255.255.xxx
Net device: eth0
Kernel module: rhinefet

5) If you can't install driver at boot time.
If you can install your driver using insmod command, but you can't
install it at boot time, please check whether the driver is in the
correct directory (eg: /lib/modules/2.2.XXX/net/), and check the
/lib/modules/2.2.XXX/modules.dep file, it must include the following
line:
/lib/modules/2.2.XXX/net/rhinefet.o:

You can insert this line using depmod command or insert it manually.
Also, you must consult your Linux distribution installation guide
and learn how to set the IP address of your network interface and
up it at boot time.

6) If you can't compile this driver, and parse error messages appear,
please make sure your source code text format is right. You must convert
your source code text format from MS-DOS to UNIX, as show below (see
Solution 1 and 2).
Make sure the files in floppy disk are not dlkfet-4.24.tar.gz file. They
must be the source code text files (5 files), dlkfet-4.24.tar.gz is not
a text file, so it can't be converted.

Solution1:
If you use mcopy command to copy your driver from floppy disk to
linux, you can type:
mcopy -t a:\* .
then it will convert the format for you.

Solution2:
If you use mount command to mount floppy disk to linux, you can
type:
mount -t vfat -o conv=t /dev/fd0 /mnt/floppy
then, when you copy files from /mnt/floppy, these files format will
be right.

Module Parameter:
=================
The following parameters can be set when we install the driver module. You can add this parameters when
you execute 'insmod' or 'modprobe' command to install the driver (as below).
insmod rhinefet.o parameter=value1,value2,value3,...
For example, if you have 3 NIC cards, and you want to set the speed_duplex paramter value of them .
You can type the following command to set it.
insmod rhinefet.o speed_duplex=1,2,3
Then, the parameter value of first card will be 1 (100Mbps half duplex mode), the second card will
be 2 (100Mbps full duplex mode), and the third card will be 3 (10Mbps half duplex mode).
Remember, our driver only support 8 cards parameter setting.

1) speed_duplex
speed_duplex[] is used for setting the speed and duplex mode of NIC.
Value:
0: indicate autonegotiation for both speed and duplex mode (Default).
1: indicate 100Mbps half duplex mode
2: indicate 100Mbps full duplex mode
3: indicate 10Mbps half duplex mode
4: indicate 10Mbps full duplex mode

2) enable_tagging (For management adapter only)
enable_tagging[] is used for enabling VLAN ID setting and enabling
priority transmit.
Value:
0: disable VID setting and priority transmit (Default).
1: enable VID setting and priority transmit.

3) VID_setting (For management adapter only)
VID_setting[] is used for setting the VLAN ID of NIC.
Value:
0: default VID.
1-4094: other VIDs.

4) csum_offload (For management adapter only)
csum_offload[] is used for setting the checksum offload ability of NIC.
Value:
0: disable csum_offload (Default).
1: enable checksum offload. (We only support RX checksum offload now)

5) txcsum_offload (For management adapter only)
csum_offload[] is used for setting the checksum offload ability of NIC.
Value:
0: disable (default)
1: enable


6) flow_control
flow_control[] is used for setting the flow control ability of NIC.
Value:
1: hardware deafult (Default). Use Hardware default value in ANAR.
2: disable PAUSE in ANAR.
3: enable PAUSE in ANAR.


7) IP_byte_align
IP_byte_align[] is used for IP header DWORD byte aligned (For IPVS environment).
(In some enviroment, the IP header should be DWORD byte aligned,or the packet
will be droped when we receive it. (eg: IPVS))
Value:
0: indicate the IP header won't be DWORD byte aligned (Default).
1: indicate the IP header will be DWORD byte aligned.


8) tx_thresh
tx_thresh[] is used for controlling the transmit fifo threshold.
Value:
0: indicate the txfifo threshold is 128 bytes (Default).
1: indicate the txfifo threshold is 256 bytes.
2: indicate the txfifo threshold is 512 bytes.
3: indicate the txfifo threshold is 1024 bytes.
4: indicate that we use store and forward

9) rx_thresh
rx_thresh[] is used for controlling the receive fifo threshold.
Value:
0: indicate the rxfifo threshold is 64 bytes (Default).
1: indicate the rxfifo threshold is 32 bytes.
2: indicate the rxfifo threshold is 128 bytes.
3: indicate the rxfifo threshold is 256 bytes.
4: indicate the rxfifo threshold is 512 bytes.
5: indicate the rxfifo threshold is 768 bytes.
6: indicate the rxfifo threshold is 1024 bytes.
7: indicate that we use store and forward

10) DMA_length
DMA_length[] is used for controlling the DMA length.
Value:
0: 8 DWORDs
1: 16 DWORDs (Deafult)
2: 32 DWORDs
3: 64 DWORDs
4: 128 DWORDs
5: 256 DWORDs
6: SF(flush till emply)
7: SF(flush till emply)





Edition du fichier Makefile

DEBUG = 0

VMNS = 1

OBJS := rhine_main.o rhine_proc.o rhine_wol.o
SRC = rhine_main.c rhine_proc.c rhine_wol.c
TARGET = rhinefet.o

KSP := /lib/modules/$(shell uname -r)/build \
/usr/src/linux-$(shell uname -r) \
/usr/src/linux-$(shell uname -r | sed 's/-.*//') \
/usr/src/kernel-headers-$(shell uname -r) \
/usr/src/kernel-source-$(shell uname -r) \
/usr/src/linux-$(shell uname -r | sed 's/\([0-9]*\.[0-9]*\)\..*/\1/') \
/usr/src/linux

ifeq ($(VMNS),1)
OBJS+=rhine_vmns.o
SRC+=rhine_vmns.c
endif

test_dir = $(shell [ -e $(dir)/include/linux ] && echo $(dir))
KSP := $(foreach dir, $(KSP), $(test_dir))

KSRC := $(firstword $(KSP))
#KSRC :=/usr/src/ksrc/RedHat/7.2/linux-2.4.7-10alt-ent
ifeq (,$(KSRC))
$(error Linux kernel source not found)
endif

VERSION_FILE := $(KSRC)/include/linux/version.h
CONFIG_FILE := $(KSRC)/include/linux/config.h

ifeq (,$(wildcard $(VERSION_FILE)))
$(error Linux kernel source not configured - missing version.h)
endif

ifeq (,$(wildcard $(CONFIG_FILE)))
$(error Linux kernel source not configured - missing config.h)
endif

ifneq (,$(findstring egcs-2.91.66, $(shell cat /proc/version)))
CC := kgcc gcc cc
else
CC := gcc cc
endif

test_cc = $(shell which $(cc) > /dev/null 2>&1 && echo $(cc))
CC := $(foreach cc, $(CC), $(test_cc))
CC := $(firstword $(CC))

CFLAGS += -Wall -DLINUX -D__KERNEL__ -DMODULE -DEXPORT_SYMTAB -D__NO_VERSION__ -O2 -pipe
CFLAGS += -I$(KSRC)/include -I. -Wstrict-prototypes -fomit-frame-pointer
CFLAGS += $(shell [ -f $(KSRC)/include/linux/modversions.h ] && \
echo "-DMODVERSIONS -include $(KSRC)/include/linux/modversions.h")

KVER := $(shell $(CC) $(CFLAGS) -E -dM $(VERSION_FILE) | grep UTS_RELEASE | \
awk '{ print $$3 }' | sed 's/\"//g')

KERVER2=$(shell uname -r | cut -d. -f2)

.SILENT: $(TARGET) clean

ifeq ($(TARGET), rhinefet.o)
ifneq ($(KVER),$(shell uname -r))
$(warning ***)
$(warning *** Warning: kernel source version ($(KVER)))
$(warning *** does not match running kernel ($(shell uname -r)))
$(warning *** Continuing with build,)
$(warning *** resulting driver may not be what you want)
$(warning ***)
endif
endif

INSTDIR := $(shell find /lib/modules/$(KVER) -name $(TARGET) -printf "%h\n" | sort | head -1)

ifeq (,$(INSTDIR))
ifeq (,$(KERVER2))
ifneq (,$(wildcard /lib/modules/$(KVER)/kernel))
INSTDIR := /lib/modules/$(KVER)/kernel/drivers/net
else
INSTDIR := /lib/modules/$(KVER)/net
endif
else
ifneq ($(KERVER2),2)
INSTDIR := /lib/modules/$(KVER)/kernel/drivers/net
else
INSTDIR := /lib/modules/$(KVER)/net
endif
endif
endif

# look for SMP in config.h
SMP := $(shell $(CC) $(CFLAGS) -E -dM $(CONFIG_FILE) | \
grep CONFIG_SMP | awk '{ print $$3 }')
ifneq ($(SMP),1)
SMP := 0
endif

ifeq ($(VMNS), 1)
CFLAGS += -DVMNS
endif

ifeq ($(DEBUG), 1)
CFLAGS += -DRHINE_DBG
endif

ifeq ($(TARGET), rhinefet.o)
ifneq ($(SMP),$(shell uname -a | grep SMP > /dev/null 2>&1 && echo 1 || echo 0))
$(warning ***)
ifeq ($(SMP),1)
$(warning *** Warning: kernel source configuration (SMP))
$(warning *** does not match running kernel (UP))
else
$(warning *** Warning: kernel source configuration (UP))
$(warning *** does not match running kernel (SMP))
endif
$(warning *** Continuing with build,)
$(warning *** resulting driver may not be what you want)
$(warning ***)
endif
endif

ifeq ($(SMP), 1)
CFLAGS += -D__SMP__
endif

$(TARGET): $(filter-out $(TARGET), $(SRC:.c=.o))
$(LD) -r $^ -o $@
echo; echo
echo "**************************************************"
echo "Build options:"
echo " VERSION $(KVER)"
echo -n " SMP "
if [ "$(SMP)" = "1" ]; \
then echo "Enabled"; else echo "Disabled"; fi
echo -n " VMNS "
if [ "$(VMNS)" = "1" ]; \
then echo "Enabled"; else echo "Disabled"; fi
echo "***************************************************"

install: clean $(TARGET)
mkdir -p $(MOD_ROOT)$(INSTDIR)
install -m 644 -o root $(TARGET) $(MOD_ROOT)$(INSTDIR)
@if [ -f $(MOD_ROOT)$(INSTDIR)/via-rhine.o ] ; then \
echo "***** Move official driver via-rhine.o to via-rhine.o.backup" ; \
echo "mv $(MOD_ROOT)$(INSTDIR)/via-rhine.o $(MOD_ROOT)$(INSTDIR)/via-rhine.o.backup";\
mv $(MOD_ROOT)$(INSTDIR)/via-rhine.o $(MOD_ROOT)$(INSTDIR)/via-rhine.o.backup ; \
echo ;\
fi ;
@if [ -f $(MOD_ROOT)$(INSTDIR)/linuxfet.o ] ; then \
echo "***** Move previous driver linuxfet.o to linuxfet.o.backup" ; \
echo "mv $(MOD_ROOT)$(INSTDIR)/linuxfet.o $(MOD_ROOT)$(INSTDIR)/linuxfet.o.backup";\
mv $(MOD_ROOT)$(INSTDIR)/linuxfet.o $(MOD_ROOT)$(INSTDIR)/linuxfet.o.backup ; \
echo ;\
fi ;

ifeq (,$(MOD_ROOT))
/sbin/depmod -a || true
else
/sbin/depmod -b $(MOD_ROOT) -a || true
endif

uninstall:
rm -f $(INSTDIR)/$(TARGET)
@if [ -f $(MOD_ROOT)$(INSTDIR)/via-rhine.o.backup ] ; then \
echo "***** Restore official driver vai-rhine.o from $(MOD_ROOT)$(INSTDIR)".; \
echo "mv $(MOD_ROOT)$(INSTDIR)/via-rhine.o.backup $(MOD_ROOT)$(INSTDIR)/via-rhine.o";\
mv $(MOD_ROOT)$(INSTDIR)/via-rhine.o.backup $(MOD_ROOT)$(INSTDIR)/via-rhine.o ;\
fi
/sbin/depmod -a


clean:
rm -f $(TARGET) $(SRC:.c=.o) *~

-include .depend.mak
Avatar de l’utilisateur
casse gueule
Enseigne de vaisseau
Enseigne de vaisseau
 
Messages: 142
Inscrit le: 20 Juin 2004 22:56

Messagepar Franck78 » 24 Juin 2004 10:04

hello,


DFE530TX, c'est pas une nouveauté cette carte. Elle devrait être utilisable directement sans compilation...?

Au pire elle est "ne2000 compatible" .
Franck
L'art de poser une question sur ce site afin d'obtenir la réponse
A LIRE
Avatar de l’utilisateur
Franck78
Amiral
Amiral
 
Messages: 5625
Inscrit le: 20 Fév 2004 01:00
Localisation: Paris

Messagepar casse gueule » 24 Juin 2004 10:27

elle n'est pas utilisable directement dans la mnf pas de detection
pas chez moi.
Avatar de l’utilisateur
casse gueule
Enseigne de vaisseau
Enseigne de vaisseau
 
Messages: 142
Inscrit le: 20 Juin 2004 22:56

Messagepar Franck78 » 24 Juin 2004 10:35

Pas détectée ne veut pas dire que le driver n'est pas compilé dans la distribution.

Avant de te lancer dans une install de source du kernel
(#rpm -i kernel-source)

essaies:
#find /lib/modules -iname rhine
#find /lib/modules -iname ne20

Si tu trouves un driver qui répond à ces noms, insmod-le
#insmod driver.o
Franck
L'art de poser une question sur ce site afin d'obtenir la réponse
A LIRE
Avatar de l’utilisateur
Franck78
Amiral
Amiral
 
Messages: 5625
Inscrit le: 20 Fév 2004 01:00
Localisation: Paris

Messagepar Methos_Hi » 24 Juin 2004 15:33

Je peux t'assurer que la mandrake 10 connait ta dlink.
J'ai la même et d'ailleurs sous mnf.

J'ai posté un message très récent à ce sujet.

D'autre part j'ai pas trop apprécié le long copier-coller. Crois tu vraiement que quelqu'un va le lire ??
Alors si tu pouvais le supprimer on pourrait accéder directement à l'essentiel.

[EDIT] Et en plus je me rends compte que c'est à toi que j'ai déjà répondu :evil:
viewtopic.php?t=18022&highlight=dlink [/EDIT]
Avatar de l’utilisateur
Methos_Hi
Amiral
Amiral
 
Messages: 1520
Inscrit le: 07 Fév 2004 01:00
Localisation: Ile de France

question

Messagepar casse gueule » 24 Juin 2004 22:08

Bonsoir et merci à vous pour votre patience mais je débute et je cherche aussi à cpmprendre mes erreurs

Quelle est le numéro de la mnf que vous utilisez.

Merci
Avatar de l’utilisateur
casse gueule
Enseigne de vaisseau
Enseigne de vaisseau
 
Messages: 142
Inscrit le: 20 Juin 2004 22:56

Messagepar Methos_Hi » 24 Juin 2004 23:38

Ben la 10
Avatar de l’utilisateur
Methos_Hi
Amiral
Amiral
 
Messages: 1520
Inscrit le: 07 Fév 2004 01:00
Localisation: Ile de France

Messagepar fabzz007 » 25 Juin 2004 09:44

moi pas de pb avec dfe 530 tx et dfe 500 tx avec la version 8.2

Et puis il y a deja un topic "Quelle carte réseau choisir où j'avais donné ce lien qui peut etre utile :

fabzz007 a écrit:Tu trouvera ici toutes les carte ethernet compatible GNU/linux :

http://doc.mandrakelinux.com/MandrakeLi ... ether.html

c'était dans le userguide de la mnf :wink:

En esperant avoir aidé :D
Avatar de l’utilisateur
fabzz007
Capitaine de vaisseau
Capitaine de vaisseau
 
Messages: 339
Inscrit le: 13 Mai 2004 14:36
Localisation: Lyon

Messagepar fabzz007 » 25 Juin 2004 09:45

j'ai oublié de dire que je penche plus pour un pb matériel genre port pci defectueux ou carte eth hs...
Avatar de l’utilisateur
fabzz007
Capitaine de vaisseau
Capitaine de vaisseau
 
Messages: 339
Inscrit le: 13 Mai 2004 14:36
Localisation: Lyon

Messagepar Methos_Hi » 25 Juin 2004 10:49

Je pense plus pour un non suivi de consigne et donc un non renseignement de "modules.conf". :?
Avatar de l’utilisateur
Methos_Hi
Amiral
Amiral
 
Messages: 1520
Inscrit le: 07 Fév 2004 01:00
Localisation: Ile de France

Messagepar casse gueule » 25 Juin 2004 14:17

bonjour,

merci à vous tous pour votre aide

pour repondre à fabzz007 j'ai teste les pci de la machine et la carte reseau sur un systeme windows
la carte reseau marche

tu sembles avoir la meme carte reseau que moi (dlink dfe-530tx) peux me donner stp la config de ton modules.conf

de mon coté j 'ai une carte en eth0 3com 905btx qui est bien vu
et la dlink devrait être en eth1

de quels info avez vous besoins pour m aider.


Merci
Avatar de l’utilisateur
casse gueule
Enseigne de vaisseau
Enseigne de vaisseau
 
Messages: 142
Inscrit le: 20 Juin 2004 22:56

Messagepar Methos_Hi » 25 Juin 2004 15:08

Code: Tout sélectionner
[root@gateway root]# cat /etc/modules.conf

options tap0 -o tap0 unit=0
alias eth1 via-rhine
alias eth0 xxxxx <---- Ici ton driver 3com (ce texte et la flèche sont à supprimer)

Avatar de l’utilisateur
Methos_Hi
Amiral
Amiral
 
Messages: 1520
Inscrit le: 07 Fév 2004 01:00
Localisation: Ile de France

Messagepar fabzz007 » 25 Juin 2004 16:13

je ne suis pas devant ma mnf aujourd'hui... je pourrais pas avant lundi désolé... mais avec ce que t'as laissé methos_hi ça devrais marcher
Avatar de l’utilisateur
fabzz007
Capitaine de vaisseau
Capitaine de vaisseau
 
Messages: 339
Inscrit le: 13 Mai 2004 14:36
Localisation: Lyon

Messagepar casse gueule » 26 Juin 2004 18:16

bonjour
je suis toujours avec mon problème de de carte réseau
malgre la modification du modules.conf la carte ne monte pas j ai l'impression que ma version de mandrake security n'est pas la bonne

uname -r me donne

2.4.18-8.1MDKSECURE
(au boot du cd il me dit 'welcom to mandrake security OCT 2002)

j' ai aussi fait l'installation sur une autre machine (p4 1.7) avec une 2eme carte d-link DFE-530TX
que j'ai prise dans une autre machine ou elle marche même chose.


détail sur carte reseau (dlink DFE-530TX REV-C1)

shipset DL10030B

MERCI A VOUS
Avatar de l’utilisateur
casse gueule
Enseigne de vaisseau
Enseigne de vaisseau
 
Messages: 142
Inscrit le: 20 Juin 2004 22:56


Retour vers Mandriva MNF & SNF

Qui est en ligne ?

Utilisateur(s) parcourant actuellement ce forum : Aucun utilisateur inscrit et 1 invité

cron