This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

ASG 7.502 on Toshiba Magnia SG30

I know, I know, this little box hasn't seen any love here in quite a few years, 3 since the last post about a SG20 as far as I saw in my searches.

That being said, it's still a perfect box for running ASG and replacing a standard router for a little more speed and control.  I actually have a couple of these servers and wanted to re-purpose them from their original Red-Hat installs.  For those not familiar with the box, it's a small headless server that was made for SOHO environments as a "all in one" box.  The headless part makes installing an OS on it challenging, and more so because I do not have the 8 pin serial cable for it's console access.

I took a look at shorewall on an Ubuntu 9.10 install and IPCop that was tailored for the SG series and wasn't super impressed with either.  Came across ASG and decided to take a deeper look into what was needed to get it working on my SG30.  Turns out, not much at all needs to be done...

The original install was done on a netbook using a USB to IDE adapter and a USB cd-rom, tried to keep it generic and simple so I wouldn't have any problems.  After I installed it, it took a little tweak in one file to make it boot & become accessible from the WebGUI:

/etc/modules.conf (Modified):

alias eth0 8139too
alias eth1 e100


This was added so that the shutdown command actually powers the box off completely;

/etc/rc.d/rc0.d/S10halt (Modified): (Lines besides those between double remarks are for finding location of addition)
fi


##Added for Toshiba SG LCD panel shutdown
echo -e "\033X"  > /dev/ttyS0
echo -ne "\033"  > /dev/ttyS0
echo -ne "8q"  > /dev/ttyS0
##End of add for Toshiba SG LCD
exec /sbin/halt -i -d -p -f >/dev/null 2>&1 &

# for more safety:
exit 1


Then to keep the LCD clean, I created the following files;

/etc/rc.d/sglcd_startup (Added): (Symbolic link from /etc/rc.d/rc3.d/S00sglcd_startup)
echo -ne "\033X" > /dev/ttyS0

echo -n "   Booting...   " > /dev/ttyS0


/etc/rc.d/sglcd_booted (Added): (Symbolic link from /etc/rc.d/rc3.d/S99sglcd_booted)
sleep 20

echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 5
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0
sleep 20
echo -ne "\033X" > /dev/ttyS0
echo -n "Astaro  Home Use" > /dev/ttyS0
echo -ne "\nSecurity Gateway" > /dev/ttyS0


/etc/rc.d/sglcd_shutdown (Added): (Symbolic link from /etc/rc.d/rc0.d/S00sglcd_shutdown)
echo -ne "\033X" > /dev/ttyS0

echo -ne "Shutting Down...\n" > /dev/ttyS0


/etc/rc.d/sglcd_restart (Added): (Symbolic link from /etc/rc.d/rc6.d/S00sglcd_restart)
echo -ne "\033X" > /dev/ttyS0

echo -n "  Restarting... " > /dev/ttyS0


The "booted" script has a few sleep commands and then sends the same info to the LCD panel a few times.  Reason for this in the booting process it looks like a program is probing the serial ports and it causes strings of junk to appear.  With the sleep commands, you will get some junk, but it will be gone in a few seconds.  Otherwise these are just for aesthetics only, this way I can at least visibly see when it's booting, restarting, or powering off.

One other thing I did do was modify the menu.lst file for startup so that the console will be redirected to the back serial port. (Just in case I do ever order up the cable or if others need it) Here's the changes I made to it:
# To enable serial console please uncomment the following two lines.

# You may also want to add a line like 'console=ttyS0,38400' to the
# 'kernel' lines below
serial --unit=1 --speed=115200
terminal --timeout=0 serial

title  Astaro Security Gateway V7
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd

title  Astaro Security Gateway V7 (previous)
root (hd0,0)
kernel /boot/vmlinuz.previous root=/dev/disk/by-label/root vga=normal video=ofonly nosmp noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd.previous

title  Astaro Security Gateway V7 (rescue)
root (hd0,0)
kernel /boot/vmlinuz root=/dev/disk/by-label/root vga=normal video=ofonly nosmp nolapic noapic acpi=off splash=silent console=ttyS1,115200
initrd /boot/initrd


To make sure I have an easy way to recover this system I made a disk image of it using dd.  The image is only 1.4GB and restores to the HDD quickly, also if others would like to load it on their SG30, it has minimal modifications to the original install and shouldn't cause a problem with updates and such. Also, the  In the future I'll probably be tweaking the LCD files and possibly adding some backup routines for mirroring the HDD.

I would be willing to share my HDD image with anyone here that would like it, but I won't post any links in here unless the moderators and such around here give me the green flag to do so.  The image itself is of the system IMMEDIATELY after the initial install and before the system has rebooted after that.  I basically found the files I needed to change, did another fresh install and modified the files I listed above to have a good baseline to work from. Basically as it would have been installed locally on the machine instead of a netbook, with as little modifications as possible to have a clean appearing machine.

So mods, is it a violation of any rules to share such an image?  Just want to make sure...

Also of note, the system is nice and responsive, and although I haven't loaded it yet and am still getting familiar with everything, I think it will be just fine for my 30MB cable connection.  Idle CPU is around 2-4% and uses 50-60% of memory after bootup, not too bad.  I did install the 7.503 and the 7.504 updates with no troubles, took less then 5 minutes to install and start the reboot for 7.504.  

Anyone else still using these things? [:$]

Ohhh, and this is my first post.. Be gentle... [:D]


This thread was automatically locked due to age.
Parents

  • [    2.553162] uhci_hcd: USB Universal Host Controller Interface driver
    [    2.559956] uhci_hcd 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.568789] uhci_hcd 0000:00:07.2: UHCI Host Controller
    [    2.574334] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 2
    [    2.582244] uhci_hcd 0000:00:07.2: irq 11, io base 0x0000e800
    [    2.588339] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.595460] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.603048] usb usb2: Product: UHCI Host Controller
    [    2.608272] usb usb2: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.616037] usb usb2: SerialNumber: 0000:00:07.2
    [    2.752153] usb 1-2: new high speed USB device using ehci_hcd and address 2
    [    2.813081] usb usb2: configuration #1 chosen from 1 choice
    [    2.831619] hub 2-0:1.0: USB hub found
    [    2.835740] hub 2-0:1.0: 2 ports detected
    [    2.840134] uhci_hcd 0000:00:07.3: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.848959] uhci_hcd 0000:00:07.3: UHCI Host Controller
    [    2.854440] uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 3
    [    2.862284] uhci_hcd 0000:00:07.3: irq 11, io base 0x0000ec00
    [    2.868382] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.875487] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.883052] usb usb3: Product: UHCI Host Controller
    [    2.888197] usb usb3: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.895953] usb usb3: SerialNumber: 0000:00:07.3
    [    2.989690] usb usb3: configuration #1 chosen from 1 choice
    [    3.000632] hub 3-0:1.0: USB hub found
    [    3.004818] hub 3-0:1.0: 2 ports detected
    [    3.009351] uhci_hcd 0000:00:0c.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    3.018664] uhci_hcd 0000:00:0c.0: UHCI Host Controller
    [    3.024318] uhci_hcd 0000:00:0c.0: new USB bus registered, assigned bus number 4
    [    3.032256] uhci_hcd 0000:00:0c.0: irq 11, io base 0x0000d800
    [    3.038506] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.045755] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.053512] usb usb4: Product: UHCI Host Controller
    [    3.058708] usb usb4: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.066656] usb usb4: SerialNumber: 0000:00:0c.0
    [    3.084872] usb 1-2: New USB device found, idVendor=059b, idProduct=005b
    [    3.092175] usb 1-2: New USB device strings: Mfr=73, Product=80, SerialNumber=98
    [    3.100075] usb 1-2: Product: CDRW19202EXT2-B  Ì¤
    [    3.105086] usb 1-2: Manufacturer: Iomega
    [    3.109379] usb 1-2: SerialNumber: 4401E57705D5C0C3F
    [    3.197275] usb 1-2: configuration #2 chosen from 1 choice
    [    3.239204] usb usb4: configuration #1 chosen from 1 choice
    [    3.253793] hub 4-0:1.0: USB hub found
    [    3.257977] hub 4-0:1.0: 2 ports detected
    [    3.276014] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 15
    [    3.282268] uhci_hcd 0000:00:0c.1: PCI INT B -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    3.291182] uhci_hcd 0000:00:0c.1: UHCI Host Controller
    [    3.296703] uhci_hcd 0000:00:0c.1: new USB bus registered, assigned bus number 5
    [    3.304454] uhci_hcd 0000:00:0c.1: irq 15, io base 0x0000dc00
    [    3.310627] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.317794] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.325340] usb usb5: Product: UHCI Host Controller
    [    3.330436] usb usb5: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.338207] usb usb5: SerialNumber: 0000:00:0c.1
    [    3.453716] usb usb5: configuration #1 chosen from 1 choice
    [    3.465901] hub 5-0:1.0: USB hub found
    [    3.470128] hub 5-0:1.0: 2 ports detected
    Waiting for device /dev/disk/by-label/root to appear:  ok
    fsck from util-linux-ng 2.16
    [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/sda6
    root: clean, 26872/352256 files, 372387/1407687 blocks
    fsck succeeded. Mounting root device read-write.
    Mounting root /dev/disk/by-label/root
    mount -o rw,data=ordered -t ext3 /dev/disk/by-label/root /root
    [    4.889387] kjournald starting.  Commit interval 5 seconds
    [    4.896539] EXT3 FS on sda6, internal journal
    [    4.901191] EXT3-fs: mounted filesystem with ordered data mode.
    INIT: version 2.86 booting
    System Boot Control: Running /etc/init.d/boot
    Mounting sysfs at /sys                                               done
    Mounting debugfs at /sys/kernel/debug                                done
    Copying static /dev content                                          done
    :: Early Toshiba Magnia SG setup starting...
    :: Adding agetty serial redirect to /etc/inittab...
    :: Installing Toshiba Magnia LCD support files...
    :: Copying LCD startup/shutdown scripts to /etc/init.d...
    :: Installing Toshiba Magnia RPMs...
    warning: /sa2/rpms/compat-libstdc++-7.3-2.96.110.i386.rpm: Header V3 DSA signature: NOKEY, key ID db42a60e
    :: Early Toshiba Magnia SG setup complete...
    Starting udevd:                                                      done
    Loading drivers, con[    9.049333] udevd version 128 started
    figuring devices: [    9.380990] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [    9.507887] Initializing USB Mass Storage driver...
    [    9.528910] 8139too Fast Ethernet driver 0.9.28
    [    9.577994] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    [    9.584483] e100: Copyright(c) 1999-2006 Intel Corporation
    [    9.597716] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    [    9.606719] ACPI: Power Button [PWRB]
    [    9.610762] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [    9.618588] ACPI: Power Button [PWRF]
    [    9.718773] parport_pc: VIA parallel port disabled in BIOS
    [    9.792457] processor LNXCPU:00: registered as cooling_device0
    [    9.798909] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 7
    [    9.804962] 8139too 0000:00:08.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    [    9.813852] eth0: RealTek RTL8139 at 0xf8240f00, 00:10:c6:XX:XX:XX, IRQ 7
    [    9.838180] rtc_cmos 00:05: RTC can wake from S4
    [    9.843341] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [    9.849845] rtc0: alarms up to one year, y3k, 114 bytes nvram
    [    9.877758] scsi2 : SCSI emulation for USB Mass Storage devices
    [    9.907730] e100 0000:00:09.0: PCI INT A -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    9.938217] e100 0000:00:09.0: PME# disabled
    [    9.942970] e100: eth1: e100_probe: addr 0xdfffe000, irq 15, MAC addr 00:10:c6:XX:XX:XX
    [    9.983258] usbcore: registered new interface driver usb-storage
    [    9.989605] USB Mass Storage support registered.
Reply

  • [    2.553162] uhci_hcd: USB Universal Host Controller Interface driver
    [    2.559956] uhci_hcd 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.568789] uhci_hcd 0000:00:07.2: UHCI Host Controller
    [    2.574334] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 2
    [    2.582244] uhci_hcd 0000:00:07.2: irq 11, io base 0x0000e800
    [    2.588339] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.595460] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.603048] usb usb2: Product: UHCI Host Controller
    [    2.608272] usb usb2: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.616037] usb usb2: SerialNumber: 0000:00:07.2
    [    2.752153] usb 1-2: new high speed USB device using ehci_hcd and address 2
    [    2.813081] usb usb2: configuration #1 chosen from 1 choice
    [    2.831619] hub 2-0:1.0: USB hub found
    [    2.835740] hub 2-0:1.0: 2 ports detected
    [    2.840134] uhci_hcd 0000:00:07.3: PCI INT D -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
    [    2.848959] uhci_hcd 0000:00:07.3: UHCI Host Controller
    [    2.854440] uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 3
    [    2.862284] uhci_hcd 0000:00:07.3: irq 11, io base 0x0000ec00
    [    2.868382] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
    [    2.875487] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    2.883052] usb usb3: Product: UHCI Host Controller
    [    2.888197] usb usb3: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    2.895953] usb usb3: SerialNumber: 0000:00:07.3
    [    2.989690] usb usb3: configuration #1 chosen from 1 choice
    [    3.000632] hub 3-0:1.0: USB hub found
    [    3.004818] hub 3-0:1.0: 2 ports detected
    [    3.009351] uhci_hcd 0000:00:0c.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
    [    3.018664] uhci_hcd 0000:00:0c.0: UHCI Host Controller
    [    3.024318] uhci_hcd 0000:00:0c.0: new USB bus registered, assigned bus number 4
    [    3.032256] uhci_hcd 0000:00:0c.0: irq 11, io base 0x0000d800
    [    3.038506] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.045755] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.053512] usb usb4: Product: UHCI Host Controller
    [    3.058708] usb usb4: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.066656] usb usb4: SerialNumber: 0000:00:0c.0
    [    3.084872] usb 1-2: New USB device found, idVendor=059b, idProduct=005b
    [    3.092175] usb 1-2: New USB device strings: Mfr=73, Product=80, SerialNumber=98
    [    3.100075] usb 1-2: Product: CDRW19202EXT2-B  Ì¤
    [    3.105086] usb 1-2: Manufacturer: Iomega
    [    3.109379] usb 1-2: SerialNumber: 4401E57705D5C0C3F
    [    3.197275] usb 1-2: configuration #2 chosen from 1 choice
    [    3.239204] usb usb4: configuration #1 chosen from 1 choice
    [    3.253793] hub 4-0:1.0: USB hub found
    [    3.257977] hub 4-0:1.0: 2 ports detected
    [    3.276014] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 15
    [    3.282268] uhci_hcd 0000:00:0c.1: PCI INT B -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    3.291182] uhci_hcd 0000:00:0c.1: UHCI Host Controller
    [    3.296703] uhci_hcd 0000:00:0c.1: new USB bus registered, assigned bus number 5
    [    3.304454] uhci_hcd 0000:00:0c.1: irq 15, io base 0x0000dc00
    [    3.310627] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
    [    3.317794] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    3.325340] usb usb5: Product: UHCI Host Controller
    [    3.330436] usb usb5: Manufacturer: Linux 2.6.32.24-81.g73e70cd-default uhci_hcd
    [    3.338207] usb usb5: SerialNumber: 0000:00:0c.1
    [    3.453716] usb usb5: configuration #1 chosen from 1 choice
    [    3.465901] hub 5-0:1.0: USB hub found
    [    3.470128] hub 5-0:1.0: 2 ports detected
    Waiting for device /dev/disk/by-label/root to appear:  ok
    fsck from util-linux-ng 2.16
    [/sbin/fsck.ext3 (1) -- /] fsck.ext3 -a /dev/sda6
    root: clean, 26872/352256 files, 372387/1407687 blocks
    fsck succeeded. Mounting root device read-write.
    Mounting root /dev/disk/by-label/root
    mount -o rw,data=ordered -t ext3 /dev/disk/by-label/root /root
    [    4.889387] kjournald starting.  Commit interval 5 seconds
    [    4.896539] EXT3 FS on sda6, internal journal
    [    4.901191] EXT3-fs: mounted filesystem with ordered data mode.
    INIT: version 2.86 booting
    System Boot Control: Running /etc/init.d/boot
    Mounting sysfs at /sys                                               done
    Mounting debugfs at /sys/kernel/debug                                done
    Copying static /dev content                                          done
    :: Early Toshiba Magnia SG setup starting...
    :: Adding agetty serial redirect to /etc/inittab...
    :: Installing Toshiba Magnia LCD support files...
    :: Copying LCD startup/shutdown scripts to /etc/init.d...
    :: Installing Toshiba Magnia RPMs...
    warning: /sa2/rpms/compat-libstdc++-7.3-2.96.110.i386.rpm: Header V3 DSA signature: NOKEY, key ID db42a60e
    :: Early Toshiba Magnia SG setup complete...
    Starting udevd:                                                      done
    Loading drivers, con[    9.049333] udevd version 128 started
    figuring devices: [    9.380990] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [    9.507887] Initializing USB Mass Storage driver...
    [    9.528910] 8139too Fast Ethernet driver 0.9.28
    [    9.577994] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
    [    9.584483] e100: Copyright(c) 1999-2006 Intel Corporation
    [    9.597716] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    [    9.606719] ACPI: Power Button [PWRB]
    [    9.610762] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [    9.618588] ACPI: Power Button [PWRF]
    [    9.718773] parport_pc: VIA parallel port disabled in BIOS
    [    9.792457] processor LNXCPU:00: registered as cooling_device0
    [    9.798909] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 7
    [    9.804962] 8139too 0000:00:08.0: PCI INT A -> Link[LNKB] -> GSI 7 (level, low) -> IRQ 7
    [    9.813852] eth0: RealTek RTL8139 at 0xf8240f00, 00:10:c6:XX:XX:XX, IRQ 7
    [    9.838180] rtc_cmos 00:05: RTC can wake from S4
    [    9.843341] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [    9.849845] rtc0: alarms up to one year, y3k, 114 bytes nvram
    [    9.877758] scsi2 : SCSI emulation for USB Mass Storage devices
    [    9.907730] e100 0000:00:09.0: PCI INT A -> Link[LNKC] -> GSI 15 (level, low) -> IRQ 15
    [    9.938217] e100 0000:00:09.0: PME# disabled
    [    9.942970] e100: eth1: e100_probe: addr 0xdfffe000, irq 15, MAC addr 00:10:c6:XX:XX:XX
    [    9.983258] usbcore: registered new interface driver usb-storage
    [    9.989605] USB Mass Storage support registered.
Children
No Data