I think the only choice you have left then is some kind of tunnel. If this is only for you that is, else you need to educate the other users on this method?

What I'd do, is if you can't SSH into your network, I'd wait until I was in the office, SSH to a machine outside your network from the server hosting the SVN repo. This would be no ordinary SSH command though. You would be creating a reverse tunnel.

E.g. If you are on the server hosting the SVN, ssh to you machine like so:

ssh -R 60000:_servers_internal_ip:80 you@Remote_host_ip
So, what this means is, that I want a SSH tunnel to my "Remote_host_ip". On that machine there will be a tunnel that listens on port 60000, which comes back into your corporate network and allow you to see port 80 of the SVN server.

All you need to do on the remote host is:

svn co http://127.0.0.1:60000/subversion/myrepo/trunk my_repo
That will connect to you to the SVN server, no problems.

Bear in mind that the connection is only valid for the time the tunnel stays up. You can then use any of the SSH modules on CPAN to do this automatically with SSH public/private keys etc.

You could also use the other server , svnserve with SSH.

A bit of a fudge, but if the firewall is totally out of your hands, you've no choice :(

HTH.

Walking the road to enlightenment... I found a penguin and a camel on the way.....
Fancy a yourname@perl.me.uk? Just ask!!!

In reply to Re: svn without webdav by ghenry
in thread svn without webdav by garyaj

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.