AR-B8601 User Manual AR-B8601 Board VIA EDEN , VGA, LAN, DDR2 PCI, COM, 4 USB User Manual Manual Rev. : 1.2 Book Number: AR-B8601-2010.11.
AR-B8601 User Manual Revision Version Date Author Description 1.0 2009.09.23 Cody 1.1 2010.06.30 Cody Release 1.Modify item description with INIT Display First 2.Add used ACPI Suspend Type 3.Modify item description with Onboard Serial Port 1 1.2 2010.11.22 Cody 1. Modify connector table description with Panel Connector.
AR-B8601 User Manual Copyright 2008 All Rights Reserved. Manual’s first edition: For the purpose of improving reliability, design and function, the information in this document is subject to change without prior notice and does not represent a commitment on the part of the manufacturer.
AR-B8601 User Manual Table of Contents 1 Introduction .......................................................................................... 5 1.1 Specifications ................................................................................................... 6 1.2 Package Contents ............................................................................................ 7 1.3 Block Diagram ..................................................................................................
AR-B8601 User Manual 1 INTRODUCTION Acrosser's Microbox Networking device AR-N8601 is a small, cost-effetive and entry-level UTM (Unified Threat Management) hard ware, which is suitable for small office. The Board of this microbox is AR-B8601. Base on VIA CN700 with ULV Eden 500MHz CPU, the AR-B8601 general very low heat. By three 10/100 Lans, the AR-B8601 is sufficient for the small business security hardware solution.
AR-B8601 User Manual 1.1 Specifications VIA EDEN ULV 500 CPU. VIA CN700+8237R plus Chipsets. DDRII memory support (533MHz). 3 x 10/100LAN RTL8100C. CF socket, SATA x 1, SATA power, USB x 4. Console, VGA (pinhead). Support PXE boot from LAN. Compact size.
AR-B8601 User Manual 1.2 Package Contents Check if the following items are included in the package : Quick Manual. AR-B8601. 1 x Software Utility CD.
AR-B8601 User Manual 1.
AR-B8601 User Manual 2 H/W INFORMATION This chapter describes the installation of AR-B8601. At first, it shows the function diagram and the layout of AR-B8601. It then describes the unpacking information which you should read carefully, as well as the jumper/switch settings for the AR-B8601 configuration. 2.
AR-B8601 User Manual 2.2 Connector and Jumper Setting POWER,HDD LED Ethernet RJ-45 LAN LED Ethernet RJ-45 USB Connector1 Ethernet RJ-45 USB Connector2 VGA Connector DDR2 Memory Slot Serial Port PCI Slot (3.
AR-B8601 User Manual 2.3 Connector and Jumper Setting Table 2.3.1 POWER HDD LED 2.3.2 LAN LED 2.3.3 USB Connector1 PIN SIGNAL PIN SIGNAL 2.3.4 LDE1 Description LED Description UP POWER UP LINK DOWN HDD DOWN ACTS USB Connector2 PIN SIGNAL PIN SIGNAL 1 +5V 2 +5V 3 USB0- 4 USB1- 2.3.5 DDR2 Memory Slot 2.3.6 1 +5V 2 +5V 3 USB2- 4 USB3- 5 USB2+ 6 USB3+ 7 GND 8 GND 9 GND 10 GND PCI Slot (3.3 Volt) PCI Slot (3.3 Volt) SODIMM Memory Slot 2.3.
AR-B8601 User Manual 2.3.10 FAN Connector 2.3.11/2.3.12/2.3.13 Ethernet RJ-45 (LAN1/LAN2/LAN3) PIN SIGNAL PIN SIGNAL PIN Description 1 GND 2 FAN VCC 3 SENSE PIN 1 2 3 4 7 8 9 Description 1 RED (R) 2 Ground 3 GREEN (G) TX+ 5 N/C 4 Ground 2 TX- 6 RX- 5 BLUE (B) 3 RX+ 7 N/C 6 Ground 7 VERTICAL SYNCHRON (VS) 8 CLOCK (CLK) 9 HORIZONTAL SYNCHRON (HS) 10 DATA (SDATA) N/C 8 N/C 2.3.16 Power Jack (12V Input) 2.3.
AR-B8601 User Manual 3 GPIO ,WATCHDOG PROGRAMMING GPIO Sample Code //=========================================================================== // Turbo C++ Version 3.0 Copyright(c) 1990, 1992 by Borland International,Inc. //=========================================================================== // Describe : GPIO10~GPIO17 Test utility for W83697HF. // Date : 06/26/2009 // Author : Willy //=========================================================================== #include
AR-B8601 User Manual gotoxy(1, 4); cprintf("<>==========================================================================<>"); gotoxy(1, 5); cprintf("|| Model Name gotoxy(1, 6); cprintf("|| SIO IO Base : gotoxy(1, 7); cprintf("<>==========================================================================<>"); : ||"); ||"); // Show Got Parameter Informat textcolor(LIGHTGRAY); gotoxy(18,6); cprintf("%X",IO_PORT_BASE); // Enter W83697HF Config outportb(IO_PORT_BASE,0x87); outportb(IO_PORT_BASE,0x87);
AR-B8601 User Manual outportb(IO_PORT_BASE,0xF1); outportb(IO_PORT_BASE+1,0x00); // Read W83697HF GPIO14~17 Status, if not Low error. data=inportb(IO_PORT_BASE+1)&0xF0; if(data!=0x00) result=1; // Set W83697HF GPIO10~13 to input, GPIO14~GPIO17 to Output outportb(IO_PORT_BASE,0xF0); outportb(IO_PORT_BASE+1,0x0F); // Set W83697HF GPIO14~17 to High outportb(IO_PORT_BASE,0xF1); outportb(IO_PORT_BASE+1,0xF0); // Read W83697HF GPIO10~13 Status, if not High error.
AR-B8601 User Manual //=========================================================================== // Function : Show_Help() // Input :- // Change :- // Return :- // Description : Show Title string.
AR-B8601 User Manual WATCHDOG TIMER Sample Code //=========================================================================== // Describe : W83697HF WatchDog timer test // Date : 08/12/2004 // Author : Willy //=========================================================================== //=========================================================================== // Language include files //=========================================================================== #include #include
AR-B8601 User Manual BYTE Format=0x01; // Default is 0x01 = Seconds if ( argc != 3 ) { Show_Title(); return 1; } clrscr(); textcolor(YELLOW+BLINK); Time=atoi(argv[1]); Time_Format=argv[2][0]; if(Time_Format=='m' || Time_Format=='M') Format=0x05; // Minutes if(Time_Format=='s' || Time_Format=='S') Format=0x01; // Seconds // Set Watchdog outportb(IO_Port_Address,0x87); // (EFER) Extended Functions Enable Register outportb(IO_Port_Address,0x87); outportb(IO_Port_Address,0x29); // Point to Global
AR-B8601 User Manual outportb(IO_Port_Address,0xF4); // Read Watchdog Timer Value Time=inportb(IO_Port_Address+1); gotoxy(20,10); if(Time_Format=='m' || Time_Format=='M') cprintf(">>> After %d Minutes will reset the system. <<<",Time); if(Time_Format=='s' || Time_Format=='S') cprintf(">>> After %d Second will reset the system.
AR-B8601 User Manual 4 BIOS SETTING This chapter describes the BIOS menu displays and explains how to perform common tasks needed to get the system up and running. It also gives detailed explanation of the elements found in each of the BIOS menus.
AR-B8601 User Manual 4.1 Main Setup Once you enter the Award BIOS™ CMOS Setup Utility, the Main Menu will appear on the screen. Use the arrow keys to highlight the item and then use the keys to select the desired value in each item. Note: The control keys are listed at the bottom of the menu. If you need any help with the item fields, you can press the key, and the relevant information will be displayed. Option Choice Description Date Setup N/A Set the system date.
AR-B8601 User Manual 4.2 Advanced Chipset Setup Option Choice Description Quick Power On Self Test Enabled Disabled This category speeds up the Power On Self Test (POST) after you have powered on the computer. If it is set to Enabled, the BIOS will shorten or skip some check items during POST. Full Screen Logo Show Enabled Disabled Select Enabled to show the full screen logo if you have an add-in BIOS. APIC Mode Enabled Disabled Select Enable or Disable the APIC Mode.
AR-B8601 User Manual VGA Share Memory Size 16M 32M 64M Console Redirection Enabled Disabled Baud Rate 9600 19200 38400 57600 115200 Agent after boot Enabled Disabled Select VGA Share Memory Size. [Enabled] for user who want to remote control the system via serial port. The baud rate of remote control machine should the same as the system for communication.
AR-B8601 User Manual 4.3 Power Setup Option Choice Description ACPI Function Enabled Disabled ACPI System Support ACPI Suspend Type S1(POS) To decide which ACPI suspend mode to use.
AR-B8601 User Manual 4.4 PnP/PCI Setup Option Reset Configuration Data Choice Description Enabled Disabled Normally, you leave this field Disabled. Select Enabled to reset the Extended System Configuration Data (ESCD) when you exit Setup. This may be necessary if you have installed a new add-on and the system reconfiguration has caused such a serious conflict that the operating system can not boot.
AR-B8601 User Manual Resources Controlled By IRQ Resources Auto (ESCD) Manual The Award Plug and Play BIOS has the capacity to automatically configure all of the boot and Plug and Play compatible devices. However, this capability means absolutely nothing unless you are using a Plug and Play operating system such as Windows 95 or higher. If you set this field to “Manual”, you may choose specific resources by entering each of the submenus.
AR-B8601 User Manual 4.5 Peripherals Setup Option Choice Description Onboard Serial Port 1 Disabled 3F8 / IRQ4 2F8 / IRQ3 3E8 / IRQ4 2E8 / IRQ3 Select an address and the corresponding interrupt for each serial port. Enabled Disabled Select Enabled if your system contains a Universal Serial Bus (USB) controller and you have USB peripherals.
AR-B8601 User Manual USB 2.0 Controller On chip IDE DEVICE Enabled Disabled Select Enabled if your system contains a Universal Serial Bus (USB) 2.0 controller and you have USB peripherals. Enabled Disabled The integrated peripheral controller contains an IDE interface with support for two IDE channels. Select Enabled to activate each channel separately. 4.6 PC Health Setup This section shows the parameters for determining the PC Health Status.
AR-B8601 User Manual 4.7 Boot Setup Option Choice Description First / Second / Third Boot Device/Other Boot Device Hard Disk CDROM USB-FDD USB-CDROM LAN Disabled The BIOS attempts to load the operating system from the devices in the selected sequence. LAN Boot Select Enabled Disabled Hard Disk Boot Priority N/A 29 These fields allow the system to search for an OS from LAN. These fields set the Boot Priority for each Hard Disk.
AR-B8601 User Manual 4.8 Exit Setup Option Save & Exit Setup Load Optimized Defaults Choice Press on this item to confirm: Save to CMOS and EXIT (Y/N)? Y When you press on this item, you will see a confirmation dialog box with a message like this: Load Optimized Defaults (Y/N)? N 30 Description Press “Y” to store the selections made in the menus in CMOS – a special section of the memory that stays on after you turn your system off.
AR-B8601 User Manual Exit Without Saving Press on this item to confirm: Quit without saving (Y/N)? Y This allows you to exit Setup without storing any changes in CMOS. The previous selections remain in effect. This will exit the Setup utility and restart your computer. When a password has been enabled, you will be prompted to enter your password every time you try to enter Setup. This prevents unauthorized persons from changing any part of your system configuration.