⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.sb1000

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 SB1000
字号:
sb1000 is a module network device driver for the General Instrument (also knownas NextLevel) SURFboard1000 internal cable modem board.  This is an ISA cardwhich is used by a number of cable TV companies to provide cable modem access.It's a one-way downstream-only cable modem, meaning that your upstream net linkis provided by your regular phone modem.This driver was written by Franco Venturi <fventuri@mediaone.net>.  He deservesa great deal of thanks for this wonderful piece of code!-----------------------------------------------------------------------------Support for this device is now a part of the standard Linux kernel.  Thedriver source code file is drivers/net/sb1000.c.  In addition to thisyou will need:1.) The "cmconfig" program.  This is a utility which supplements "ifconfig"to configure the cable modem and network interface (usually called "cm0");and2.) Several PPP scripts which live in /etc/ppp to make connecting via yourcable modem easy.   These utilities can be obtained from:      http://www.jacksonville.net/~fventuri/   in Franco's original source code distribution .tar.gz file.  Support for   the sb1000 driver can be found at:      http://home.adelphia.net/~siglercm/sb1000.html      http://linuxpower.cx/~cable/   along with these utilities.3.) The standard isapnp tools.  These are necessary to configure your SB1000card at boot time (or afterwards by hand) since it's a PnP card.   If you don't have these installed as a standard part of your Linux   distribution, you can find them at:      http://www.roestock.demon.co.uk/isapnptools/   or check your Linux distribution binary CD or their web site.  For help with   isapnp, pnpdump, or /etc/isapnp.conf, go to:      http://www.roestock.demon.co.uk/isapnptools/isapnpfaq.html-----------------------------------------------------------------------------To make the SB1000 card work, follow these steps:1.) Run `make config', or `make menuconfig', or `make xconfig', whicheveryou prefer, in the top kernel tree directory to set up your kernelconfiguration.  Make sure to say "Y" to "Prompt for development drivers"and to say "M" to the sb1000 driver.  Also say "Y" or "M" to all the standardnetworking questions to get TCP/IP and PPP networking support.2.) *BEFORE* you build the kernel, edit drivers/net/sb1000.c.  Make sureto redefine the value of READ_DATA_PORT to match the I/O address usedby isapnp to access your PnP cards.  This is the value of READPORT in/etc/isapnp.conf or given by the output of pnpdump.3.) Build and install the kernel and modules as usual.4.) Boot your new kernel following the usual procedures.5.) Set up to configure the new SB1000 PnP card by capturing the outputof "pnpdump" to a file and editing this file to set the correct I/O ports,IRQ, and DMA settings for all your PnP cards.  Make sure none of the settingsconflict with one another.  Then test this configuration by running the"isapnp" command with your new config file as the input.  Check forerrors and fix as necessary.  (As an aside, I use I/O ports 0x110 and0x310 and IRQ 11 for my SB1000 card and these work well for me.  YMMV.)Then save the finished config file as /etc/isapnp.conf for proper configurationon subsequent reboots.6.) Download the original file sb1000-1.1.2.tar.gz from Franco's site or one ofthe others referenced above.  As root, unpack it into a temporary directory anddo a `make cmconfig' and then `install -c cmconfig /usr/local/sbin'.  Don't do`make install' because it expects to find all the utilities built and ready forinstallation, not just cmconfig.7.) As root, copy all the files under the ppp/ subdirectory in Franco'star file into /etc/ppp, being careful not to overwrite any files that arealready in there.  Then modify ppp@gi-on to set the correct login name,phone number, and frequency for the cable modem.  Also edit pap-secretsto specify your login name and password and any site-specific informationyou need.8.) Be sure to modify /etc/ppp/firewall to use ipchains instead ofthe older ipfwadm commands from the 2.0.x kernels.  There's a neat utility toconvert ipfwadm commands to ipchains commands:   http://users.dhp.com/~whisper/ipfwadm2ipchains/You may also wish to modify the firewall script to implement a differentfirewalling scheme.9.) Start the PPP connection via the script /etc/ppp/ppp@gi-on.  You must beroot to do this.  It's better to use a utility like sudo to executefrequently used commands like this with root permissions if possible.  If youconnect successfully the cable modem interface will come up and you'll see adriver message like this at the console:         cm0: sb1000 at (0x110,0x310), csn 1, S/N 0x2a0d16d8, IRQ 11.         sb1000.c:v1.1.2 6/01/98 (fventuri@mediaone.net)The "ifconfig" command should show two new interfaces, ppp0 and cm0.The command "cmconfig cm0" will give you information about the cable modeminterface.10.) Try pinging a site via `ping -c 5 www.yahoo.com', for example.  You shouldsee packets received.11.) If you can't get site names (like www.yahoo.com) to resolve intoIP addresses (like 204.71.200.67), be sure your /etc/resolv.conf filehas no syntax errors and has the right nameserver IP addresses in it.If this doesn't help, try something like `ping -c 5 204.71.200.67' tosee if the networking is running but the DNS resolution is where theproblem lies.12.) If you still have problems, go to the support web sites mentioned aboveand read the information and documentation there.-----------------------------------------------------------------------------Common problems:1.) Packets go out on the ppp0 interface but don't come back on the cm0interface.  It looks like I'm connected but I can't even ping anynumerical IP addresses.  (This happens predominantly on Debian systems dueto a default boot-time configuration script.)Solution -- As root `echo 0 > /proc/sys/net/ipv4/conf/cm0/rp_filter' so itcan share the same IP address as the ppp0 interface.  Note that thiscommand should probably be added to the /etc/ppp/cablemodem script*right*between* the "/sbin/ifconfig" and "/sbin/cmconfig" commands.You may need to do this to /proc/sys/net/ipv4/conf/ppp0/rp_filter as well.If you do this to /proc/sys/net/ipv4/conf/default/rp_filter on each reboot(in rc.local or some such) then any interfaces can share the same IPaddresses.2.) I get "unresolved symbol" error messages on executing `insmod sb1000.o'.Solution -- You probably have a non-matching kernel source tree and/usr/include/linux and /usr/include/asm header files.  Make sure youinstall the correct versions of the header files in these two directories.Then rebuild and reinstall the kernel.3.) When isapnp runs it reports an error, and my SB1000 card isn't working.Solution -- There's a problem with later versions of isapnp using the "(CHECK)"option in the lines that allocate the two I/O addresses for the SB1000 card.This first popped up on RH 6.0.  Delete "(CHECK)" for the SB1000 I/O addresses.Make sure they don't conflict with any other pieces of hardware first!  Thenrerun isapnp and go from there.4.) I can't execute the /etc/ppp/ppp@gi-on file.Solution -- As root do `chmod ug+x /etc/ppp/ppp@gi-on'.5.) The firewall script isn't working (with 2.2.x and higher kernels).Solution -- Use the ipfwadm2ipchains script referenced above to convert the/etc/ppp/firewall script from the deprecated ipfwadm commands to ipchains.6.) I'm getting *tons* of firewall deny messages in the /var/kern.log,/var/messages, and/or /var/syslog files, and they're filling up my /varpartition!!!Solution -- First, tell your ISP that you're receiving DoS (Denial of Service)and/or portscanning (UDP connection attempts) attacks!  Look over the denymessages to figure out what the attack is and where it's coming from.  Next,edit /etc/ppp/cablemodem and make sure the ",nobroadcast" option is turned onto the "cmconfig" command (uncomment that line).  If you're not receiving thesedenied packets on your broadcast interface (IP address xxx.yyy.zzz.255typically), then someone is attacking your machine in particular.  Be carefulout there....7.) Everything seems to work fine but my computer locks up after a while(and typically during a lengthy download through the cable modem)!Solution -- You may need to add a short delay in the driver to 'slow down' theSURFboard because your PC might not be able to keep up with the transfer rateof the SB1000. To do this, it's probably best to download Franco'ssb1000-1.1.2.tar.gz archive and build and install sb1000.o manually.  You'llwant to edit the 'Makefile' and look for the 'SB1000_DELAY'define.  Uncomment those 'CFLAGS' lines (and comment out the default ones)and try setting the delay to something like 60 microseconds with:'-DSB1000_DELAY=60'.  Then do `make' and as root `make install' and tryit out.  If it still doesn't work or you like playing with the driver, you maytry other numbers.  Remember though that the higher the delay, the slower thedriver (which slows down the rest of the PC too when it is activelyused). Thanks to Ed Daiga for this tip!-----------------------------------------------------------------------------Credits:  This README came from Franco Venturi's original README file which isstill supplied with his driver .tar.gz archive.  I and all other sb1000 usersowe Franco a tremendous "Thank you!"  Additional thanks goes to Carl Pattenand Ralph Bonnell who are now managing the Linux SB1000 web site, and tothe SB1000 users who reported and helped debug the common problems listedabove.					Clemmitt Sigler					csigler@vt.edu

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -