Displaying 3 results from an estimated 3 matches for "atworks".
Did you mean:
artworks
2006 May 24
2
Domain Logins across VPN
I've been trying to get this to work for a few days now. I read that
domain requests are sent via broadcast, and to use WINS to get around it.
Well, I've enabled the WINS server on my Samba PDC, and told the BDC's on
each VPN segment that the PDC is a WINS server. WINS resolution works
apparently, I can sit on a VPN'd network segment and ping machines across
the VPN via their
2002 Mar 03
1
tinc vs. ipchains masquerading
Howdy,
I tried tackling this on irc with Ivo, but I suspect that irc may really
not be the best medium for technical discussions, so I'll reprise it here.
I am trying to duplicate the "tinc from behind a masquerading firewall"
example from the tinc web site:
(home) <--> (masquerading firewall) <--> (office)
192.168.1.21 192.168.1.1/1.2.3.4
2005 Sep 03
1
CentOS bootstrapper for chroot(2) environment
...kernel package rebuild.
Regards,
Lace
-------------- next part --------------
#! /bin/bash
# Bootstrap for: CentOS-4.1
# $Id: centos-bootstrap,v 1.4 2005/09/03 03:07:17 short Exp $
# Latest:
# http://cvs.jankratochvil.net/viewcvs/nethome/src/centos-bootstrap?rev=HEAD
RPMS_URL_BASE=http://rsync.atworks.co.jp/centos/4.1/os/i386/CentOS/RPMS
if test $# != 1;then echo >&2 "Syntax: $0 <target-root-directory(DELETED!)>";exit 1;fi
ROOT="$1"
if test "${ROOT#/}" = "$ROOT";then echo >&2 "Absolute pathname required: $ROOT";exit 1;fi
cd...