From mikael at tinysofa.org Sun Sep 3 10:23:04 2006 From: mikael at tinysofa.org (Mikael Bak) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] Hungarian mirror - new machine and new IP address Message-ID: <200609031723.05355.mikael@tinysofa.org> Hi list, I had to move the hungarian tinysofa mirror to another machine. Since the IP address has changed the server can be unavaiable for some time for some of you depending on how quickly the DNS record is updated. Sorry if this causes problems for someone. Cheers, Mikael From mikael at tinysofa.org Mon Sep 4 09:36:50 2006 From: mikael at tinysofa.org (Mikael Bak) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] Hungarian mirror up and running Message-ID: <200609041636.51139.mikael@tinysofa.org> Hi list, The mirror here in Budapest should be up and running again. Please report if you have any problems with it. Cheers, Mikael From mikael at tinysofa.org Mon Sep 4 09:45:30 2006 From: mikael at tinysofa.org (Mikael Bak) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] tinysofa list blcklisted Message-ID: <200609041645.31170.mikael@tinysofa.org> Hi list, I was wondering why I don't get any email from the list anymore... and stopped wondering when I saw this in the postfix logs: Sep 4 16:30:21 thor postfix/smtpd[26348]: 5F764127776: reject: RCPT from treehou.se[72.36.165.74]: 554 Service unavailable; Client host [72.36.165.74] blocked using bl.spamcop.net; Blocked - see http://www.spamcop.net/bl.shtml?72.36.165.74; from= to= proto=ESMTP helo= The admin of this mail server should visit the link above and follow the steps provided to get unlisted. For me it's no problem anymore, because I put the list's IP address on a white list. But for others maybe this is a problem. Cheers, Mikael From TPE at dansupport.dk Mon Sep 18 04:49:12 2006 From: TPE at dansupport.dk (Torben Petersen Egmose) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] Announce: php-json-ext Message-ID: <79A898AFA801A44996A19542AECD5B0E6843F5@gandalf.dansupport.dk> Hallo there, Just wanted to announce json extension for php. We have added it to http://netwatch.dansupport.dk/tinysofa/ Source: http://www.aurore.net/projects/php-json/ php-json is an extremely fast PHP C extension for JSON (JavaScript Object Notation) serialisation. Torben Petersen Egmose -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.tinysofa.org/pipermail/classic-discuss/attachments/20060918/31bc013f/attachment.html From TPE at dansupport.dk Sat Sep 23 07:25:53 2006 From: TPE at dansupport.dk (Torben Petersen Egmose) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] VLAN support Message-ID: <79A898AFA801A44996A19542AECD5B0E68445A@gandalf.dansupport.dk> Hallo there, wasn't vlan 801.1Q supported in tiny at some time? If so, does anyone know why? I'm thinking about using tiny sofa as internetwork router, or is tiny a bad choice for that? Torben Petersen Egmose -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.tinysofa.org/pipermail/classic-discuss/attachments/20060923/b0decaf5/attachment.html From mikael at tinysofa.org Mon Sep 25 04:40:03 2006 From: mikael at tinysofa.org (Mikael Bak) Date: Sun May 4 12:28:02 2008 Subject: [Classic-discuss] VLAN support In-Reply-To: <79A898AFA801A44996A19542AECD5B0E68445A@gandalf.dansupport.dk> References: <79A898AFA801A44996A19542AECD5B0E68445A@gandalf.dansupport.dk> Message-ID: <200609251140.04215.mikael@tinysofa.org> On Saturday 23 September 2006 14:25, Torben Petersen Egmose wrote: > Hallo there, > > wasn't vlan 801.1Q supported in tiny at some time? > If so, does anyone know why? > These VLAN kernel features are available: $ cat /boot/config-2.6.16-4ts | grep VLAN CONFIG_BRIDGE_EBT_VLAN=m CONFIG_VLAN_8021Q=m CONFIG_R8169_VLAN=y I don't know if you need any special user space apps to get things work though. > I'm thinking about using tiny sofa as internetwork router, or is tiny a > bad choice for that? > It may or may not be a bad choise. It really depends on your level of knowledge on the specific network tasks you want to get working. If I were you I'd have a look at some of those free, special purpose router distributions with nice web-interface for configuration. This way you don't have to find out how things work yourself and most importantly, you don't have to compile your own kernel or user space software. I use m0n0wall[1] for router / VLAN tasks here at the office and we're very happy with it, and it fits on an 8MB (!) flash card: http://m0n0.ch/wall/ > > Torben Petersen Egmose HYH, Mikael From TPE at dansupport.dk Wed Sep 27 03:36:39 2006 From: TPE at dansupport.dk (Torben Petersen Egmose) Date: Sun May 4 12:28:02 2008 Subject: SV: [Classic-discuss] VLAN support Message-ID: <79A898AFA801A44996A19542AECD5B0E684499@gandalf.dansupport.dk> Announce: vlan howto Here is a short howto setup vlan and make it routed. Make sure your drivers support VLAN frames, because they are bigger. I used a Intel Pro/1000 because it has hardware acceleration for vlan tags. vconfig (http://fresh.t-systems-sfr.com/linux/src/vlan.1.9.tar.gz) Just for good mesure, the rpm I made is located at http://netwatch.dansupport.dk/tinysofa/ So here it comes: modprobe e1000 modprobe 8021q # Make sure card it up, because it doesn't accept new vlans if it is down. ifconfig eth0 up ifconfig eth0 0.0.0.0 # add your vlans vconfig add eth0 1 vconfig add eth0 3 vconfig add eth0 5 #Now you have alot of new interfaces that just need some config. ifconfig eth0.1 10.0.0.1 netmask 255.255.255.0 ifconfig eth0.3 10.0.3.1 netmask 255.255.255.0 ifconfig eth0.5 10.0.5.1 netmask 255.255.255.0 #Now active forwarding (routing) echo "1" > /proc/sys/net/ipv4/ip_forward #make sure to set default route, if all vlans need internet access route add default gw 10.0.0.2 Thanks for a great dist. -----Oprindelig meddelelse----- Fra: classic-discuss-bounces@tinysofa.org [mailto:classic-discuss-bounces@tinysofa.org] P? vegne af Mikael Bak Sendt: 25. september 2006 11:40 Til: classic-discuss@tinysofa.org Emne: Re: [Classic-discuss] VLAN support On Saturday 23 September 2006 14:25, Torben Petersen Egmose wrote: > Hallo there, > > wasn't vlan 801.1Q supported in tiny at some time? > If so, does anyone know why? > These VLAN kernel features are available: $ cat /boot/config-2.6.16-4ts | grep VLAN CONFIG_BRIDGE_EBT_VLAN=m CONFIG_VLAN_8021Q=m CONFIG_R8169_VLAN=y I don't know if you need any special user space apps to get things work though. > I'm thinking about using tiny sofa as internetwork router, or is tiny > a bad choice for that? > It may or may not be a bad choise. It really depends on your level of knowledge on the specific network tasks you want to get working. If I were you I'd have a look at some of those free, special purpose router distributions with nice web-interface for configuration. This way you don't have to find out how things work yourself and most importantly, you don't have to compile your own kernel or user space software. I use m0n0wall[1] for router / VLAN tasks here at the office and we're very happy with it, and it fits on an 8MB (!) flash card: http://m0n0.ch/wall/ > > Torben Petersen Egmose HYH, Mikael _______________________________________________ Classic-discuss mailing list Classic-discuss@tinysofa.org http://lists.tinysofa.org/mailman/listinfo/classic-discuss