Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: RTL8111F und Freenas

  1. #1

    RTL8111F und Freenas

    Hallo,
    ich habe hier ein P8H77-I Mainboard. Unter Freenas wird leider kein Netzwerk erkannt.
    Wie binde ich den Treiber dafür ein? Zumindest gibt es bei Realtek einen Linux Treiber für FreeBSD 7.x and 8.0, da sollte doch was zu machen sein?
    LG

    http://www.realtek.com/downloads/dow...&GetDown=false
    Last edited by leo123; 03-30-2012 at 09:42 AM.

  2. #2
    Senior Member
    Join Date
    Feb 2012
    Location
    Gera, Germany, Germany
    Posts
    159
    Ja, eigentlich schon.

    Lade es bitte mal herunter und poste es hier. :-)

    P.S.: Wo hast du die ganze Hardware her?! o.O
    NAS: 3x 2 TB @ RAID5 • 1x 1,5 TB 
    Nein, ich nutze FreeNAS nicht mehr aber ich habe ein Helfersyndrom. >> Kontakt <<

  3. #3
    rtl_bsd_drv_v180.tgz.zip
    musste das .zip am ende entfernen

  4. #4
    wegen der Hardware, ich baue noch am finalem NAS Server, und da kaufe ich eben einiges ein.
    Aktueller und hoffentlich endgültiger Stand:
    Chenbro ES34169T
    DVD NEC ND 7590S
    CPU Intel G630T
    MB Asus P8H77-I
    2x4GB Adata DDR3
    SSD 30GB Corsair Nova 2
    Das kostete mich zusammen knapp 400,-€. Finde ich gut, da wesentlich leistungsfähiger als jede Nas in der Preisklasse!

    und dann für die eigentlichen Daten 4 Stück WD10EARX, die aktuellen HDD Preise sind ja allen bekannt.

  5. #5
    Senior Member
    Join Date
    Feb 2012
    Location
    Gera, Germany, Germany
    Posts
    159
    Steht in der Readme.txt - bitte Methode 1 wählen:

    Code:
    =================================================================================
    =  Realtek 8169S/8169SB/8169SC/8168B/8168C/8168CP/8168D/8168E/                  =
    =  8101E/8102E/8103E/8401E/8105E Driver for FreeBSD v4.x/5.x/6.x/7.x/8.x        =
    =================================================================================
    
    This driver is modified by Realtek Semiconductor corp. and it has been tested OK
    on FreeBSD v5.4, FreeBSD v6.4, FreeBSD v7.3, and FreeBSD v8.0. To update the 
    driver, you may use method 1. If method 1 failed, you must use method 2 which 
    is more complex.
    
    Method 1:
    	1.Copy if_re.ko in "modules" directory to "/modules" directory and overwrite 
    	  the existing file.
    	2.Modify the file "/boot/defaults/loader.conf" and set "if_re_load" in "Network 
    	  drivers" section to "Yes"
    	3.Reboot.
    
    Method 2:
    	Because the FreeBSD kernel has default drivers to support RTL8139C and RTL8169S. To use the RTL8139C+, RTL8169SB, RTL8169SC, RTL8168B, and RTL8101E, you need to update your NIC driver by recompiling your FreeBSD kernel.
    
    	The main steps you have to do:(FreeBSDSrcDir means the directory of FreeBSD source code
    	and it may be "/usr/src/sys")
    
    		1. keep the orginal driver source code:
    			# cd /usr/src/sys/dev/re
    			# cp if_re.c if_re.c.org
    			
    			# cd /usr/src/sys/modules
    			# cp Makefile Makefile.org
    			
    			# cd /usr/src/sys/modules/re
    			# cp Makefile Makefile.org
    			
    			# cd /usr/src/sys/i386/conf/
    			# cp GENERIC GENERIC.org
    			
    		2. recompile your kernel (you must install your FreeBSD source code first !!)
    			# vim /usr/src/sys/i386/conf/GENERIC and delete re
    			# vim /usr/src/sys/modules/Makefile and delete re
    			# cd /usr/src/sys/i386/conf
    			# /usr/sbin/config GENERIC
    			
    			(for FreeBSD 5.x/6.x/7.x/8.x)
    			# cd ../compile/GENERIC
    			(for FreeBSD 4.x)
    			# cd ../../compile/GENERIC
    
    			# make depend
    			# make
    			# make install
    			# reboot
    		
    		3. update the driver source code:
    		    Copy the dirver source code( if_re.c and if_rereg.h) into /usr/src/sys/dev/re
    		    Copy the Makefile into /usr/src/sys/modules/re
    		    
    		4. build the driver:
    			# cd /usr/src/sys/modules/re
    			# make clean
    			# make
    		
    		5. install the driver
    			# cd /usr/src/sys/modules/re
    			# kldload ./if_re.ko
    			
    		6. configurate the static IP address
    			# ifconfig re0 ***.***.***.***
    			
    		7. configurate the IP address by DHCP
    			# /sbin/dhclient re0
    
    The user can use the following command to change link speed and duplexmode.
    	1. For auto negotiation,
    		#ifconfig re<device_num> media autoselect
    
    	2. For 1000Mbps full-duplex,
    		#ifconfig re<device_num> media 1000baseTX mediaopt full-duplex
    
    	3. For 100Mbps full-duplex,
    		#ifconfig re<device_num> media 100baseTX mediaopt full-duplex
    
    	4. For 100Mbps half-duplex,
    		#ifconfig re<device_num> media 100baseTX -mediaopt full-duplex
    
    	5. For 10Mbps full-duplex,
    		#ifconfig re<device_num> media 10baseT/UTP mediaopt full-duplex
    
    	6. For 10Mbps half-duplex,
    		#ifconfig re<device_num> media 10baseT/UTP -mediaopt full-duplex
    NAS: 3x 2 TB @ RAID5 • 1x 1,5 TB 
    Nein, ich nutze FreeNAS nicht mehr aber ich habe ein Helfersyndrom. >> Kontakt <<

  6. #6
    ja und wie mach ich das? Bin Windows gewöhnt.
    Was muss ich in der console eingeben? Wie entpacke ich die Dateien?

  7. #7
    OpenMediaVault kennt die Netzwerkkarte.

  8. #8
    Senior Member
    Join Date
    Feb 2012
    Location
    Gera, Germany, Germany
    Posts
    159
    Quote Originally Posted by leo123 View Post
    OpenMediaVault kennt die Netzwerkkarte.
    Der Linux Kernel unterstützt mehr Hardware - habe die OpenMediaVault getestet, war nicht begeistert.


    Hmm… das Problem ist, dass du keine Netzwerkverbindung hast.
    Wenn du möchtest mach ich dir ein Image mit dem Treiber, sofern noch Bedarf besteht. ;-)
    NAS: 3x 2 TB @ RAID5 • 1x 1,5 TB 
    Nein, ich nutze FreeNAS nicht mehr aber ich habe ein Helfersyndrom. >> Kontakt <<

  9. #9
    na das wäre ja mal voll geil! Klar besteht da Bedarf!

    was hat Dir an OpenMediaVault nicht gefallen?
    Die Einrichtung vom Raid dauerte 8 Stunden, aber nun rennt es, gigantische Datenübertragung.

    Last edited by leo123; 04-01-2012 at 03:01 PM.

  10. #10
    aber meine Dreamboxen bekomme ich weder mit cifs/smb noch NFS dazu, auf die Freigeben zuzugreifen.
    Und in einer Freigabe kann man keine weiteren Ordner freigeben, also doch nicht zu gebrauchen so. Ist schon blöd, nun habe ich ein Super Nas, und keine Software dafür.
    Werde ich mir also nen WHS besorgen..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •