Displaying 3 results from an estimated 3 matches for "atwork".
Did you mean:
artwork
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
...the externally visible address of the firewall.
(2) I am initiating the connection from the "office" side of things (which
for this example has the ip address 4.3.2.1). That
is, /etc/tinc/vpn/tinc.conf contains:
At the office:
tinc.conf:
Device = /dev/net/tun
Name = atwork
PrivateKeyFile = /etc/tinc/LARSSHACK/rsa_key.priv
ConnectTo = athome
tinc-up:
ifconfig $INTERFACE hw ether fe:fd:0:0:0:0
ifconfig $INTERFACE inet 10.0.0.1 netmask 255.0.0.0 -arp
At my house:
tinc.conf:
Device = /dev/misc/net/tun
Name = athome
PrivateKeyFile = /etc/tinc/LA...
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
c...