Welcome, Guest. Please login or register.
Did you miss your activation email?
+  pfSense Forum
|-+  pfSense English Support» 2.1 Snapshot Feedback and Problems» Realtek Driver - 2.1
Username:
Password:
 
 

Pages: [1]   Go Down
  Print  
Author Topic: Realtek Driver - 2.1  (Read 2039 times)
0 Members and 1 Guest are viewing this topic.
bdwyer
Jr. Member
**
Offline Offline

Posts: 29



View Profile WWW
« on: March 03, 2012, 05:02:22 pm »

I would like to request that the newer if_re driver be placed into the 2.1 kernel.  I'm not sure if thats something thats done normally anyway.

http://www.realtek.com/downloads/downloadsView.aspx?Langid=1&PNid=13&PFid=5&Level=5&Conn=4&DownTypeID=3&GetDown=false
Logged

CCNP, MCITP

Intel Atom N550 - 2gb DDR3
Jetway NC9C-550-LF
Antec ISK 300-150
HP ProCurve 1810-24
Cisco 1841 & 2821, Cisco 3550 x3
cmb
Administrator
Hero Member
*****
Offline Offline

Posts: 6028


View Profile WWW
« Reply #1 on: March 04, 2012, 08:23:16 pm »

we use what's built into the base FreeBSD version, which is 8.3 at this time.
Logged

pfSense Commercial Support

Paying customers receive support priority and as in depth of assistance as desired through the official commercial support channels at portal.pfsense.org. Forum users receive as much help as time permits.
bdwyer
Jr. Member
**
Offline Offline

Posts: 29



View Profile WWW
« Reply #2 on: March 04, 2012, 11:24:34 pm »

Gotcha.  I figured that after realizing the driver build used in the base is not the the manufacturers version.  The man page for re(4) in the 8.1 is dated Jan '09 and the 8.2 is '11, not sure if thats just the man page's date or the drivers date.  I'm sure the driver will be updated in 8.3.  Thanks for the response!
Logged

CCNP, MCITP

Intel Atom N550 - 2gb DDR3
Jetway NC9C-550-LF
Antec ISK 300-150
HP ProCurve 1810-24
Cisco 1841 & 2821, Cisco 3550 x3
sokolum
Newbie
*
Offline Offline

Posts: 10


Security Proffessional - Working in the industrie


View Profile
« Reply #3 on: March 06, 2012, 08:58:08 am »

we use what's built into the base FreeBSD version, which is 8.3 at this time.

Really hope they consider add newer realtek drivers, see post:
Or give the system the option just to boot without NIC's so we can modify afterwards.

http://forum.pfsense.org/index.php/topic,45137.0.html

Logged
sokolum
Newbie
*
Offline Offline

Posts: 10


Security Proffessional - Working in the industrie


View Profile
« Reply #4 on: March 09, 2012, 10:41:06 am »

we use what's built into the base FreeBSD version, which is 8.3 at this time.

Really hope they consider add newer realtek drivers, see post:
Or give the system the option just to boot without NIC's so we can modify afterwards.

http://forum.pfsense.org/index.php/topic,45137.0.html

I can confirm that release 2.1 is able to detect my Network interfaces of:

- Jetway NC9KDL-2700
- RTL8111EVL

Logged
bdwyer
Jr. Member
**
Offline Offline

Posts: 29



View Profile WWW
« Reply #5 on: March 09, 2012, 08:07:39 pm »

I can confirm that release 2.1 is able to detect my Network interfaces of:

- Jetway NC9KDL-2700
- RTL8111EVL

Thanks for the heads up.  My RTL8111E works alright at the moment on 2.0, I found that disabling autonegotation and manually setting 1gig on my WAN and LAN interfaces mitigated a flapping issue on my WAN when the modem rebooted and a similar issue/lockup when I flooded the LAN with Ping of Deaths.

I'll be waiting on 2.1 RELEASE; I don't have time to play with any potential issues on this box.
Logged

CCNP, MCITP

Intel Atom N550 - 2gb DDR3
Jetway NC9C-550-LF
Antec ISK 300-150
HP ProCurve 1810-24
Cisco 1841 & 2821, Cisco 3550 x3
Summer
Jr. Member
**
Offline Offline

Posts: 42


View Profile
« Reply #6 on: May 03, 2012, 03:24:27 am »

Hi, I've bought a Jetway NF9D-2700 with intel expansion card tried both stable and development, got no luck, with stable I can see the additional 3 ports, with developement I can use none of the 5 interfaces. Kindly ask you if there's some tricky to make it work.
I've looked at jetway driver cd that contain also relatek linux driver but I think I miss the package for pfsense to compile, lsmod and make.
this i what driver do:

Code:
#!/bin/sh

# invoke insmod with all arguments we got
# and use a pathname, as insmod doesn't look in . by default

TARGET_PATH=/lib/modules/`uname -r`/kernel/drivers/net
echo
echo "Check old driver and unload it."
check=`lsmod | grep r8169`
if [ "$check" != "" ]; then
        echo "rmmod r8169"
        /sbin/rmmod r8169
fi

check=`lsmod | grep r8168`
if [ "$check" != "" ]; then
        echo "rmmod r8168"
        /sbin/rmmod r8168
fi

echo "Build the module and install"
echo "-------------------------------" >> log.txt
date 1>>log.txt
make all 1>>log.txt || exit 1
module=`ls src/*.ko`
module=${module#src/}
module=${module%.ko}

if [ "$module" == "" ]; then
echo "No driver exists!!!"
exit 1
elif [ "$module" != "r8169" ]; then
if test -e $TARGET_PATH/r8169.ko ; then
echo "Backup r8169.ko"
if test -e $TARGET_PATH/r8169.bak ; then
i=0
while test -e $TARGET_PATH/r8169.bak$i
do
i=$(($i+1))
done
echo "rename r8169.ko to r8169.bak$i"
mv $TARGET_PATH/r8169.ko $TARGET_PATH/r8169.bak$i
else
echo "rename r8169.ko to r8169.bak"
mv $TARGET_PATH/r8169.ko $TARGET_PATH/r8169.bak
fi
fi
fi

echo "Depending module. Please wait."
depmod -a
echo "load module $module"
modprobe $module

echo "Completed."
exit 0
Logged
markuhde
Full Member
***
Offline Offline

Posts: 180


View Profile
« Reply #7 on: May 03, 2012, 04:02:53 am »

Foxconn D270S board here (Intel Atom D2700). Realtek 8111e onboard NIC, doesn't work at all in 2.0.1 for me, works great in 2.1. So yup, definitely new Realtek driver that's in 8.3. See here:

http://www.freebsd.org/releases/8.3R/relnotes-detailed.html

I just wish 2.1 was actually usable. I know, I know, patience. I just wasn't expecting this and am trying to get this system up for a client (a friendly client running an old machine borrowed from me for now, thankfully). For the most part, what works, works great. Unfortunately, the traffic shaper doesn't work. Snort doesn't work. Etc. The traffic shaper is what I care about, it needs to work before I can even consider setting this up up at the campground it's for. In time, it'll come. Smiley

Also, anyone considering an Atom D2700 based board (or presumably D2500) - AVOID LIKE THE PLAGUE. The graphics driver in FreeBSD (even 9.0) is messed up beyond belief. You can get through install with the 32-bit version, though there are missing characters and stuff. The 64-bit version only shows one line of text, so you can't even get through an install Sad Seriously - it's that bad. I got this board because it was cheap, and it's for a non-profit (I'm semi-donating my time... they'll give me something they're friendly and always do - but I'm not billing them. They also know I use them as a "sandbox" of sorts to try things before I unleash them on my other clients)
Logged
Pages: [1]   Go Up
  Print  
 
Jump to:  

 

Page created in 0.029 seconds with 19 queries.