Kategoriarkiv: Old Base

Hacking apache2 header-version

The version header is defined in ./include/ap_release.h in the apaceh2 source tree if you want to limit the number of information there is a option for that in the httpd.conf More info later if required

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

Virtualhosts in apache

To activate virtualhosts write, in the end of the httpd.conf : NameVirtualHost * And after that you can add virtualhosts with this syntax, just make sure the dns names points to your servers ip: <VirtualHost *> Documentroot /home/subdomain ServerName subdomain.cyberfamily.dk … Læs resten

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

FreeBSD ipv6 client

Asuming your router is working correctly with the ip 3ffe:80ee:5f8::/1 with a /64 range. * Give the interface “wi0” the ip 3ffe:80ee:5f8::2 with cidr prefix 64 ifconfig wi0 inet6 3ffe:80ee:5f8::2 prefixlen 64 * Add default ipv6 gateway route add -inet6 … Læs resten

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

IPv6 router under FreeBSD

First set up the IPv6 native for the router(mostly done by tunneling) XS26.net’s scripts #!/bin/sh #MYIPv4=”80.196.157.241″ # My IPv4 address #XSIPv4=”62.61.157.209″ # PoP’s IPv4 address #MYIPv6=”3ffe:80ee:5f8::1″ # Choose any IPv6 address from the range # you’ve got from XS26 ##TUNLIF=”gif0″ … Læs resten

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

sparcstation 20 manual

http://docs.sun.com/db/doc/801-6189-12

Udgivet i Knowledge Base, Old Base, Retro hardware | Skriv en kommentar

Lyd i dstumbler freebsd

it uses the at speaker device not the dsp sound device. in freebsd stable you need ‘pseudo-device speaker’ in your kernel config.

Udgivet i FreeBSD, Knowledge Base, Old Base | Skriv en kommentar

Wake On Lan Mini Howto

http://gsd.di.uminho.pt/jpo/software/wakeonlan/mini-howto/wol-mini-howto.html

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

Hotswapping harddisks in freebsd

Officially you should have a 1000$ controller to do this, but i never saw a controller who could not do this. The only damage i have seen with hotswaping has been a wasted psu bicause the person who did the … Læs resten

Udgivet i FreeBSD, Knowledge Base, Old Base | Skriv en kommentar

Normal SMTP operation

open connection to SMTP server (telnet smtp.foo.dns 25) send: –smtp start– MAIL FROM:<dude@myserver.dk> RCPT TO:<dude1@yourserver1.dk> RCPT TO:<dude2@yourserver2.dk> DATA write the entire mail here remember, this mail doesn’t got a header which usually contains sender info and topic end the conversation … Læs resten

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

CoooL’s router

#!/bin/sh # default iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT # flush iptables -t filter -F INPUT iptables -t filter -F FORWARD iptables -t filter -F OUTPUT iptables -t nat -F PREROUTING iptables -t nat … Læs resten

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