Månedsarkiv: juli 2002

Redirecting web-browsers with Javascript

Put this between thetags: <script type=”text/javascript”> function reload() { window.location=”http://blackthorne.dk/”; } </script> And this in the body tag: Ok now, that’s the buggy, crappy javascript style, you can make it as a mouseover() or onclick() if you like. There is … Læs resten

Udgivet i Uncategorized | Skriv en kommentar

Redirecting web-browsers with Javascript

Put this between the <head></head> tags: <script type=”text/javascript”> function reload() { window.location=”http://blackthorne.dk/”; } </script> And this in the body tag: <body onload=”reload()”> Ok now, that’s the buggy, crappy javascript style, you can make it as a mouseover() or onclick() if … Læs resten

Udgivet i Knowledge Base | Skriv en kommentar

Where to get all the rfc’s in a single file

ftp://ftp.rfc-editor.org/in-notes/tar/RFC-all.tar.gz

Udgivet i Knowledge Base, Links, Networking, Old Base | Skriv en kommentar

Round Robin Dns

Round Robins Dns is a simple form of load ballancing, you have 2 or more servers which provides the same servive e.g. irc or www. You want half of the users to use server A and the other half to … Læs resten

Udgivet i Domain Name System, Knowledge Base, Networking, Old Base | Skriv en kommentar

How to connect a Linux system to an IPv6 gateway

First you have to make sure that the kernel is ipv6 kombatible, do an ifconfig and look for something like this inet6 addr: fe80::202:44ff:fe27:23bd/10 Scope:Link if you cant find it, try type modprobe ipv6 and look again, if it dosnt … Læs resten

Udgivet i Knowledge Base, Linux, Networking, Old Base | Skriv en kommentar

IPIP Tunneling in linux

With ipip tunneling you can connect to LAN through internet like this: ____________ ____________ | | | | | Lan1 |___________________| Lan2 | | 10.1.x.x | Internet | 10.2.x.x | |___________| |___________| Global IP: Global IP: 80.80.80.80 90.90.90.90 If ipip-tunneling … Læs resten

Udgivet i Knowledge Base, Linux, Networking, Old Base, Uncategorized | 1 kommentar