Re: trying to target multiple host? can it be done?

"E.D. Epperson" <[email protected]> Tue, 14 Jul 2009 09:29:27 -0400
Newsgroups gmane.comp.security.zebedee.general
Message-ID <[email protected]>
This is a multi-part message in MIME format.

--===============7020874739806355874==
Content-type: multipart/alternative;
	boundary="Boundary_(ID_tyaVQmE0yNjjaYIF7Uey4g)"
Content-language: en

This is a multi-part message in MIME format.

--Boundary_(ID_tyaVQmE0yNjjaYIF7Uey4g)
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline

Tom,
Thankyou, I got it working with the configuration like below with one exception,  I redirected ports 5900-5901 (instead of 5898-5901).  Then I changed the client to tunnel to the machine I wanted.  But I had to update to 2.53 before it would take the new configuration, 

E. D. Epperson

----- Original Message -----
From: Tom Sneddon <zebedee-list-4XgCj7/[email protected]>
Date: Sunday, July 12, 2009 23:26
Subject: Re: [Zebedee-talk] trying to target multiple host? can it be done?
To: [email protected]

> Sometimes getting another set of eyeballs looking at the problem 
> is all
> it takes to discover the problem.  Please forgive me if I'm 
> stating the
> obvious stuff that you already know, but here's what I notice.
> 
> I'm assuming from tunnel 5900:192.168.1.65:5898 that your 
> Zebedee client
> is trying to connect to 192.168.1.65 on port 5898.  This 
> disagrees with
> a commented line in the server config, "#redirect
> 5900-5901:192.168.1.69:5898 #UltraVNC to Stephanies", that implies
> 192.168.1.69 port 5898 is where you want to connect to.  
> What is the
> real IP of the destination?
> 
> >From the server error "ERROR: client requested redirection to a
> disallowed target (192.168.1.60:5898/tcp)" it appears that your new
> client is trying to talk to VNC on 192.168.1.60 using port 
> 5898.  I'm
> not sure why that is happening.  I did notice that you've 
> commented out
> the redirect configuration on the server.  That should 
> redirect any
> port, but you never know...  Maybe try adding redirect lines.
> 
> For the server config try:
> 
> # Only redirect these ports
> redirect 
> 3050                   # Firebird
> redirect 5898-
> 5901              # VNC
> # Allowable destinations for these ports
> target 192.168.1.60:3050/tcp    # Old Firebird client
> target 192.168.1.60:5900/tcp    # Old VNC client
> target 192.168.1.60:5901/tcp    # Old VNC client 
> (port #2)
> target 192.168.1.69:5898/tcp    # New VNC client
> # The following line ensures that the default target host
> # is the local machine. The last named host becomes the
> # default so leaving this here ensures that "localhost" is,
> # the default unless overridden on the command line.
> target localhost
> 
> A long time ago (2006-03-15) I posted about a similar 
> situation.  That
> may also be of some help to you.  Try
> 
> http://sourceforge.net/mailarchive/forum.php?
> forum_name=zebedee-talk&max_rows=25&style=nested
> &viewmonth=200603&viewday=15
> 
> I've had to split the address up into three lines.  Just 
> cut and paste
> them together.
> 
> Please keep us posted on how you resolve this issue.
> 
> Thanks,
>    Tom Sneddon
> 
> 
> E.D. Epperson wrote:
> > I've been using Zebedee for a number of years for both 
> FirebirdSql and
> > WinVNC.  I'm using 2.41.
> >  
> > Now I need to set up an additional host for a WinVNC 
> connection so that
> > a different person in our office can tunnel directly into their
> > machine.  But I cant get it to work.  (I hope it can 
> be done)
> >  
> > here is my client.zbd file
> >  
> > verbosity 2  # Basic messages only
> > server false  # It's a client
> > detached true  # Detach from terminal
> > compression bzip2:1 # Allow maximum  compression
> > logfile   C:\ZeBeDee\Client.log
> > timestamplog  true
> > tunnel 5900:192.168.1.65:5898
> > include c:\zebedee\Keys\Stephanie.key
> > (note: when I set the tunnel to 5900:192.168.1.65:5900, it 
> works, but
> > goes to the wrong machine for this client)
> >  
> > here is the significant portion of client error log:
> > ZeBeDee(3600/3036): 2009-07-11-13:42:00:   reading 
> config file
> > 'c:\zebedee\Keys\Stephanie.key' at level 2
> > ZeBeDee(3600/3036): 2009-07-11-13:42:00:  Listening on 
> local port 5900
> > ZeBeDee(3600/3036): 2009-07-11-13:42:00:  waiting for 
> client connection
> > ZeBeDee(3600/3036): 2009-07-11-13:42:12:  accepted 
> connection from 127.0.0.1
> > ZeBeDee(3600/3036): 2009-07-11-13:42:12:  waiting for 
> client connection
> > ZeBeDee(3600/3392): 2009-07-11-13:42:12: ERROR: server refused 
> request> for redirection to 192.168.1.65:5898
> > here is the server.zbd file:
> > verbosity 2 # Slightly more than basic messages
> > detached true # free from console
> > server true # Yes, it's a server!
> > ipmode tcp # Operate only tcp
> > tcptimeout 600
> > logfile         
> c:\zebedee\zebedee.log> timestamplog true
> > compression bzip2:1 # Allow maximum zlib compression
> > keylength 256  # Allow keys up to 256 bits
> > keylifetime 36000 # Shared keys last 10 hours
> > maxbufsize 16383 # Allow maximum possible buffer size
> > keygenlevel 2  # Generate maximum strength private keys
> > checkidfile   c:\zebedee\IDs\keys.id
> > 
> > #redirect 3050:192.168.1.60:3050 #Firebird port
> > #redirect 5900-5901:192.168.1.69:5898 #UltraVNC to Stephanies
> > #redirect 5900-5901:192.168.1.60:5900-5901 #UltraVNC
> > #target 192.168.1.60
> > #redirect 3050,5898,5900,5901
> > target 192.168.1.60:3050
> > target 192.168.1.69:5898
> > target 192.168.1.60:5900
> > target 192.168.1.60:5901
> > (as you can see, I've been fiddling with this, trying 
> different option
> > to get it to work)
> >  
> > and here is the significant part of the server log:
> > zebedee(2960/2720): 2009-07-11-13:41:33: ERROR: failed to 
> detach from
> > console (Win32 error = 87)
> > zebedee(2960/2720): 2009-07-11-13:41:33:  waiting for 
> connection on port
> > 11965
> > zebedee(2960/2720): 2009-07-11-13:42:11:  accepted 
> connection from
> > 192.168.1.101
> > zebedee(2960/2720): 2009-07-11-13:42:11:  waiting for 
> connection on port
> > 11965
> > zebedee(2960/1520): 2009-07-11-13:42:11: ERROR: client requested
> > redirection to a disallowed target (192.168.1.60:5898/tcp)
> > zebedee(2960/1520): 2009-07-11-13:42:11: ERROR: initial protocol
> > exchange failed
> >  I'll be out of the office till Monday.  I 
> appreciate any help given and
> > will respond then if more information is needed.
> >  
> > Thanks
> > E. D. Epperson Jr.
> >  
> >  
> >  
> >  
> >  
> > 
> > 
> > ---------------------------------------------------------------
> ---------
> > 
> > ---------------------------------------------------------------
> ---------------
> > Enter the BlackBerry Developer Challenge  
> > This is your chance to win up to $100,000 in prizes! For a 
> limited time, 
> > vendors submitting new applications to BlackBerry App 
> World(TM) will have
> > the opportunity to enter the BlackBerry Developer Challenge. 
> See full prize  
> > details at: http://p.sf.net/sfu/Challenge
> > 
> > 
> > ---------------------------------------------------------------
> ---------
> > 
> > _______________________________________________
> > Zebedee-talk mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/zebedee-talk
> 
> 
> -----------------------------------------------------------------
> -------------
> Enter the BlackBerry Developer Challenge  
> This is your chance to win up to $100,000 in prizes! For a 
> limited time, 
> vendors submitting new applications to BlackBerry App World(TM) 
> will have
> the opportunity to enter the BlackBerry Developer Challenge. See 
> full prize  
> details at: http://p.sf.net/sfu/Challenge
> _______________________________________________
> Zebedee-talk mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/zebedee-talk
> 

--Boundary_(ID_tyaVQmE0yNjjaYIF7Uey4g)
Content-type: text/html; charset=us-ascii
Content-transfer-encoding: quoted-printable
Content-disposition: inline

=3CDIV=3ETom=2C=3C/DIV=3E
=3CDIV=3EThankyou=2C I got it working with the configuration like below =
with one exception=2C=26nbsp=3B I redirected ports 5900-5901 (instead of=
 5898-5901)=2E=26nbsp=3B Then I=26nbsp=3Bchanged the client to tunnel to=
 the machine I wanted=2E=26nbsp=3B But I had to update to 2=2E53 before =
it would take the new configuration=2C =3C/DIV=3E
=3CDIV=3E=26nbsp=3B=3C/DIV=3E
=3CDIV=3EE=2E D=2E Epperson=3CBR=3E=3CBR=3E----- Original Message -----=3C=
BR=3EFrom=3A Tom Sneddon =26lt=3Bzebedee-list=40touchtronics=2Ecom=26gt=3B=
=3CBR=3EDate=3A Sunday=2C July 12=2C 2009 23=3A26=3CBR=3ESubject=3A Re=3A=
 =5BZebedee-talk=5D trying to target multiple host=3F can it be done=3F=3C=
BR=3ETo=3A zebedee-talk=40lists=2Esourceforge=2Enet=3CBR=3E=3CBR=3E=26gt=
=3B Sometimes getting another set of eyeballs looking at the problem =3C=
BR=3E=26gt=3B is all=3CBR=3E=26gt=3B it takes to discover the problem=2E=
=26nbsp=3B Please forgive me if I=27m =3CBR=3E=26gt=3B stating the=3CBR=3E=
=26gt=3B obvious stuff that you already know=2C but here=27s what I noti=
ce=2E=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B I=27m assuming from tunnel 5900=3A=
192=2E168=2E1=2E65=3A5898 that your =3CBR=3E=26gt=3B Zebedee client=3CBR=
=3E=26gt=3B is trying to connect to 192=2E168=2E1=2E65 on port 5898=2E=26=
nbsp=3B This =3CBR=3E=26gt=3B disagrees with=3CBR=3E=26gt=3B a commented=
 line in the server config=2C =22=23redirect=3CBR=3E=26gt=3B 5900-5901=3A=
192=2E168=2E1=2E69=3A5898 =23UltraVNC to Stephanies=22=2C that implies=3C=
BR=3E=26gt=3B 192=2E168=2E1=2E69 port 5898 is where you want to connect =
to=2E=26nbsp=3B =3CBR=3E=26gt=3B What is the=3CBR=3E=26gt=3B real IP of =
the destination=3F=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B =26gt=3BFrom the ser=
ver error =22ERROR=3A client requested redirection to a=3CBR=3E=26gt=3B =
disallowed target (192=2E168=2E1=2E60=3A5898/tcp)=22 it appears that you=
r new=3CBR=3E=26gt=3B client is trying to talk to VNC on 192=2E168=2E1=2E=
60 using port =3CBR=3E=26gt=3B 5898=2E=26nbsp=3B I=27m=3CBR=3E=26gt=3B n=
ot sure why that is happening=2E=26nbsp=3B I did notice that you=27ve =3C=
BR=3E=26gt=3B commented out=3CBR=3E=26gt=3B the redirect configuration o=
n the server=2E=26nbsp=3B That should =3CBR=3E=26gt=3B redirect any=3CBR=
=3E=26gt=3B port=2C but you never know=2E=2E=2E=26nbsp=3B Maybe try addi=
ng redirect lines=2E=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B For the server con=
fig try=3A=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B =23 Only redirect these port=
s=3CBR=3E=26gt=3B redirect =3CBR=3E=26gt=3B 3050=26nbsp=3B=26nbsp=3B=26n=
bsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbs=
p=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=
=26nbsp=3B =23 Firebird=3CBR=3E=26gt=3B redirect 5898-=3CBR=3E=26gt=3B 5=
901=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=
=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B =23 VNC=3CB=
R=3E=26gt=3B =23 Allowable destinations for these ports=3CBR=3E=26gt=3B =
target 192=2E168=2E1=2E60=3A3050/tcp=26nbsp=3B=26nbsp=3B=26nbsp=3B =23 O=
ld Firebird client=3CBR=3E=26gt=3B target 192=2E168=2E1=2E60=3A5900/tcp=26=
nbsp=3B=26nbsp=3B=26nbsp=3B =23 Old VNC client=3CBR=3E=26gt=3B target 19=
2=2E168=2E1=2E60=3A5901/tcp=26nbsp=3B=26nbsp=3B=26nbsp=3B =23 Old VNC cl=
ient =3CBR=3E=26gt=3B (port =232)=3CBR=3E=26gt=3B target 192=2E168=2E1=2E=
69=3A5898/tcp=26nbsp=3B=26nbsp=3B=26nbsp=3B =23 New VNC client=3CBR=3E=26=
gt=3B =23 The following line ensures that the default target host=3CBR=3E=
=26gt=3B =23 is the local machine=2E The last named host becomes the=3CB=
R=3E=26gt=3B =23 default so leaving this here ensures that =22localhost=22=
 is=2C=3CBR=3E=26gt=3B =23 the default unless overridden on the command =
line=2E=3CBR=3E=26gt=3B target localhost=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B=
 A long time ago (2006-03-15) I posted about a similar =3CBR=3E=26gt=3B =
situation=2E=26nbsp=3B That=3CBR=3E=26gt=3B may also be of some help to =
you=2E=26nbsp=3B Try=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B http=3A//sourcefor=
ge=2Enet/mailarchive/forum=2Ephp=3F=3CBR=3E=26gt=3B forum=5Fname=3Dzebed=
ee-talk=26amp=3Bmax=5Frows=3D25=26amp=3Bstyle=3Dnested=3CBR=3E=26gt=3B =26=
amp=3Bviewmonth=3D200603=26amp=3Bviewday=3D15=3CBR=3E=26gt=3B =3CBR=3E=26=
gt=3B I=27ve had to split the address up into three lines=2E=26nbsp=3B J=
ust =3CBR=3E=26gt=3B cut and paste=3CBR=3E=26gt=3B them together=2E=3CBR=
=3E=26gt=3B =3CBR=3E=26gt=3B Please keep us posted on how you resolve th=
is issue=2E=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B Thanks=2C=3CBR=3E=26gt=3B =26=
nbsp=3B=26nbsp=3B Tom Sneddon=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B =3CBR=3E=26=
gt=3B E=2ED=2E Epperson wrote=3A=3CBR=3E=26gt=3B =26gt=3B I=27ve been us=
ing Zebedee for a number of years for both =3CBR=3E=26gt=3B FirebirdSql =
and=3CBR=3E=26gt=3B =26gt=3B WinVNC=2E=26nbsp=3B I=27m using 2=2E41=2E=3C=
BR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B Now I need to=
 set up an additional host for a WinVNC =3CBR=3E=26gt=3B connection so t=
hat=3CBR=3E=26gt=3B =26gt=3B a different person in our office can tunnel=
 directly into their=3CBR=3E=26gt=3B =26gt=3B machine=2E=26nbsp=3B But I=
 cant get it to work=2E=26nbsp=3B (I hope it can =3CBR=3E=26gt=3B be don=
e)=3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B here is =
my client=2Ezbd file=3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B=
 =26gt=3B verbosity 2=26nbsp=3B =23 Basic messages only=3CBR=3E=26gt=3B =
=26gt=3B server false=26nbsp=3B =23 It=27s a client=3CBR=3E=26gt=3B =26g=
t=3B detached true=26nbsp=3B =23 Detach from terminal=3CBR=3E=26gt=3B =26=
gt=3B compression bzip2=3A1 =23 Allow maximum=26nbsp=3B compression=3CBR=
=3E=26gt=3B =26gt=3B logfile=26nbsp=3B=26nbsp=3B C=3A=5CZeBeDee=5CClient=
=2Elog=3CBR=3E=26gt=3B =26gt=3B timestamplog=26nbsp=3B true=3CBR=3E=26gt=
=3B =26gt=3B tunnel 5900=3A192=2E168=2E1=2E65=3A5898=3CBR=3E=26gt=3B =26=
gt=3B include c=3A=5Czebedee=5CKeys=5CStephanie=2Ekey=3CBR=3E=26gt=3B =26=
gt=3B (note=3A when I set the tunnel to 5900=3A192=2E168=2E1=2E65=3A5900=
=2C it =3CBR=3E=26gt=3B works=2C but=3CBR=3E=26gt=3B =26gt=3B goes to th=
e wrong machine for this client)=3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CB=
R=3E=26gt=3B =26gt=3B here is the significant portion of client error lo=
g=3A=3CBR=3E=26gt=3B =26gt=3B ZeBeDee(3600/3036)=3A 2009-07-11-13=3A42=3A=
00=3A=26nbsp=3B=26nbsp=3B reading =3CBR=3E=26gt=3B config file=3CBR=3E=26=
gt=3B =26gt=3B =27c=3A=5Czebedee=5CKeys=5CStephanie=2Ekey=27 at level 2=3C=
BR=3E=26gt=3B =26gt=3B ZeBeDee(3600/3036)=3A 2009-07-11-13=3A42=3A00=3A=26=
nbsp=3B Listening on =3CBR=3E=26gt=3B local port 5900=3CBR=3E=26gt=3B =26=
gt=3B ZeBeDee(3600/3036)=3A 2009-07-11-13=3A42=3A00=3A=26nbsp=3B waiting=
 for =3CBR=3E=26gt=3B client connection=3CBR=3E=26gt=3B =26gt=3B ZeBeDee=
(3600/3036)=3A 2009-07-11-13=3A42=3A12=3A=26nbsp=3B accepted =3CBR=3E=26=
gt=3B connection from 127=2E0=2E0=2E1=3CBR=3E=26gt=3B =26gt=3B ZeBeDee(3=
600/3036)=3A 2009-07-11-13=3A42=3A12=3A=26nbsp=3B waiting for =3CBR=3E=26=
gt=3B client connection=3CBR=3E=26gt=3B =26gt=3B ZeBeDee(3600/3392)=3A 2=
009-07-11-13=3A42=3A12=3A ERROR=3A server refused =3CBR=3E=26gt=3B reque=
st=26gt=3B for redirection to 192=2E168=2E1=2E65=3A5898=3CBR=3E=26gt=3B =
=26gt=3B here is the server=2Ezbd file=3A=3CBR=3E=26gt=3B =26gt=3B verbo=
sity 2 =23 Slightly more than basic messages=3CBR=3E=26gt=3B =26gt=3B de=
tached true =23 free from console=3CBR=3E=26gt=3B =26gt=3B server true =23=
 Yes=2C it=27s a server!=3CBR=3E=26gt=3B =26gt=3B ipmode tcp =23 Operate=
 only tcp=3CBR=3E=26gt=3B =26gt=3B tcptimeout 600=3CBR=3E=26gt=3B =26gt=3B=
 logfile=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26nbsp=3B=26n=
bsp=3B=26nbsp=3B =3CBR=3E=26gt=3B c=3A=5Czebedee=5Czebedee=2Elog=26gt=3B=
 timestamplog true=3CBR=3E=26gt=3B =26gt=3B compression bzip2=3A1 =23 Al=
low maximum zlib compression=3CBR=3E=26gt=3B =26gt=3B keylength 256=26nb=
sp=3B =23 Allow keys up to 256 bits=3CBR=3E=26gt=3B =26gt=3B keylifetime=
 36000 =23 Shared keys last 10 hours=3CBR=3E=26gt=3B =26gt=3B maxbufsize=
 16383 =23 Allow maximum possible buffer size=3CBR=3E=26gt=3B =26gt=3B k=
eygenlevel 2=26nbsp=3B =23 Generate maximum strength private keys=3CBR=3E=
=26gt=3B =26gt=3B checkidfile=26nbsp=3B=26nbsp=3B c=3A=5Czebedee=5CIDs=5C=
keys=2Eid=3CBR=3E=26gt=3B =26gt=3B =3CBR=3E=26gt=3B =26gt=3B =23redirect=
 3050=3A192=2E168=2E1=2E60=3A3050 =23Firebird port=3CBR=3E=26gt=3B =26gt=
=3B =23redirect 5900-5901=3A192=2E168=2E1=2E69=3A5898 =23UltraVNC to Ste=
phanies=3CBR=3E=26gt=3B =26gt=3B =23redirect 5900-5901=3A192=2E168=2E1=2E=
60=3A5900-5901 =23UltraVNC=3CBR=3E=26gt=3B =26gt=3B =23target 192=2E168=2E=
1=2E60=3CBR=3E=26gt=3B =26gt=3B =23redirect 3050=2C5898=2C5900=2C5901=3C=
BR=3E=26gt=3B =26gt=3B target 192=2E168=2E1=2E60=3A3050=3CBR=3E=26gt=3B =
=26gt=3B target 192=2E168=2E1=2E69=3A5898=3CBR=3E=26gt=3B =26gt=3B targe=
t 192=2E168=2E1=2E60=3A5900=3CBR=3E=26gt=3B =26gt=3B target 192=2E168=2E=
1=2E60=3A5901=3CBR=3E=26gt=3B =26gt=3B (as you can see=2C I=27ve been fi=
ddling with this=2C trying =3CBR=3E=26gt=3B different option=3CBR=3E=26g=
t=3B =26gt=3B to get it to work)=3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CB=
R=3E=26gt=3B =26gt=3B and here is the significant part of the server log=
=3A=3CBR=3E=26gt=3B =26gt=3B zebedee(2960/2720)=3A 2009-07-11-13=3A41=3A=
33=3A ERROR=3A failed to =3CBR=3E=26gt=3B detach from=3CBR=3E=26gt=3B =26=
gt=3B console (Win32 error =3D 87)=3CBR=3E=26gt=3B =26gt=3B zebedee(2960=
/2720)=3A 2009-07-11-13=3A41=3A33=3A=26nbsp=3B waiting for =3CBR=3E=26gt=
=3B connection on port=3CBR=3E=26gt=3B =26gt=3B 11965=3CBR=3E=26gt=3B =26=
gt=3B zebedee(2960/2720)=3A 2009-07-11-13=3A42=3A11=3A=26nbsp=3B accepte=
d =3CBR=3E=26gt=3B connection from=3CBR=3E=26gt=3B =26gt=3B 192=2E168=2E=
1=2E101=3CBR=3E=26gt=3B =26gt=3B zebedee(2960/2720)=3A 2009-07-11-13=3A4=
2=3A11=3A=26nbsp=3B waiting for =3CBR=3E=26gt=3B connection on port=3CBR=
=3E=26gt=3B =26gt=3B 11965=3CBR=3E=26gt=3B =26gt=3B zebedee(2960/1520)=3A=
 2009-07-11-13=3A42=3A11=3A ERROR=3A client requested=3CBR=3E=26gt=3B =26=
gt=3B redirection to a disallowed target (192=2E168=2E1=2E60=3A5898/tcp)=
=3CBR=3E=26gt=3B =26gt=3B zebedee(2960/1520)=3A 2009-07-11-13=3A42=3A11=3A=
 ERROR=3A initial protocol=3CBR=3E=26gt=3B =26gt=3B exchange failed=3CBR=
=3E=26gt=3B =26gt=3B=26nbsp=3B I=27ll be out of the office till Monday=2E=
=26nbsp=3B I =3CBR=3E=26gt=3B appreciate any help given and=3CBR=3E=26gt=
=3B =26gt=3B will respond then if more information is needed=2E=3CBR=3E=26=
gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B Thanks=3CBR=3E=26gt=3B=
 =26gt=3B E=2E D=2E Epperson Jr=2E=3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3C=
BR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3C=
BR=3E=26gt=3B =26gt=3B=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B=26nbsp=3B =3C=
BR=3E=26gt=3B =26gt=3B =3CBR=3E=26gt=3B =26gt=3B =3CBR=3E=26gt=3B =26gt=3B=
 ---------------------------------------------------------------=3CBR=3E=
=26gt=3B ---------=3CBR=3E=26gt=3B =26gt=3B =3CBR=3E=26gt=3B =26gt=3B --=
-------------------------------------------------------------=3CBR=3E=26=
gt=3B ---------------=3CBR=3E=26gt=3B =26gt=3B Enter the BlackBerry Deve=
loper Challenge=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B This is your chance =
to win up to =24100=2C000 in prizes! For a =3CBR=3E=26gt=3B limited time=
=2C =3CBR=3E=26gt=3B =26gt=3B vendors submitting new applications to Bla=
ckBerry App =3CBR=3E=26gt=3B World(TM) will have=3CBR=3E=26gt=3B =26gt=3B=
 the opportunity to enter the BlackBerry Developer Challenge=2E =3CBR=3E=
=26gt=3B See full prize=26nbsp=3B =3CBR=3E=26gt=3B =26gt=3B details at=3A=
 http=3A//p=2Esf=2Enet/sfu/Challenge=3CBR=3E=26gt=3B =26gt=3B =3CBR=3E=26=
gt=3B =26gt=3B =3CBR=3E=26gt=3B =26gt=3B -------------------------------=
--------------------------------=3CBR=3E=26gt=3B ---------=3CBR=3E=26gt=3B=
 =26gt=3B =3CBR=3E=26gt=3B =26gt=3B =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=
=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=
=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=3CBR=3E=26gt=3B =26gt=3B Zebedee-talk =
mailing list=3CBR=3E=26gt=3B =26gt=3B Zebedee-talk=40lists=2Esourceforge=
=2Enet=3CBR=3E=26gt=3B =26gt=3B https=3A//lists=2Esourceforge=2Enet/list=
s/listinfo/zebedee-talk=3CBR=3E=26gt=3B =3CBR=3E=26gt=3B =3CBR=3E=26gt=3B=
 -----------------------------------------------------------------=3CBR=3E=
=26gt=3B -------------=3CBR=3E=26gt=3B Enter the BlackBerry Developer Ch=
allenge=26nbsp=3B =3CBR=3E=26gt=3B This is your chance to win up to =241=
00=2C000 in prizes! For a =3CBR=3E=26gt=3B limited time=2C =3CBR=3E=26gt=
=3B vendors submitting new applications to BlackBerry App World(TM) =3CB=
R=3E=26gt=3B will have=3CBR=3E=26gt=3B the opportunity to enter the Blac=
kBerry Developer Challenge=2E See =3CBR=3E=26gt=3B full prize=26nbsp=3B =
=3CBR=3E=26gt=3B details at=3A http=3A//p=2Esf=2Enet/sfu/Challenge=3CBR=3E=
=26gt=3B =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=
=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=
=5F=5F=3CBR=3E=26gt=3B Zebedee-talk mailing list=3CBR=3E=26gt=3B Zebedee=
-talk=40lists=2Esourceforge=2Enet=3CBR=3E=26gt=3B https=3A//lists=2Esour=
ceforge=2Enet/lists/listinfo/zebedee-talk=3CBR=3E=26gt=3B =3C/DIV=3E

--Boundary_(ID_tyaVQmE0yNjjaYIF7Uey4g)--


--===============7020874739806355874==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
--===============7020874739806355874==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Zebedee-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/zebedee-talk

--===============7020874739806355874==--