SF.net: Site Status Page released!


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SF.net: Site Status Page released!
# 1  
Old 07-21-2008
SF.net: Site Status Page released!

SourceForge.net staff have launched a new Site Status page which provides regular updates regarding our ongoing datacenter migration to Chicago, scheduled downtimes, unplanned outages, and new feature launches. See it at: https://sourceforge.net/sitestatus/
ImageImage

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. IP Networking

IPSec Openswan Site to Site VPN - Big Pain

Hi @all, I try to connect 2 LANs with IPSec/Openswan LAN 1: 192.168.0.0/24 LAN 2: 192.168.1.0/24 This is my Config: conn HomeVPN # # Left security gateway, subnet behind it, nexthop toward right. left=192.168.1.29 ... (1 Reply)
Discussion started by: bahnhasser83
1 Replies

2. IP Networking

Does cisco 1921 router support site to site VPNs using IPSec?

Q: "Does Cisco 1921 router support,, act as an endpoint for, site to site VPNs using IPSec? If so, how many? " A: If you get the Cisco 1921/k9 with the security services bundle then it will have built in security features. Cisco, typically includes IP Sec tunnels I believe as part of that... (0 Replies)
Discussion started by: Ayaerlee
0 Replies

3. IP Networking

How to establish site to site vpn - Linux machine and cisco asa?

Hi, I am trying to establish vpn between my linux server and cisco asa at client side. I installed openswan on my cent os. Linux Server eth0 - 182.2.29.10 Gateway - 182.2.29.1 eth1 - 192.9.200.75 I have simple IPtables Like WAN="eth0" LAN="eth1" (0 Replies)
Discussion started by: ashokvpp
0 Replies

4. Shell Programming and Scripting

How to get the date from an external site on the Net?

Hello, I am interested in getting the correct date and time. In Solaris, the "date" command will show me the information but only on the local system. I recall there's a command in Solaris that will extract the date and time from a website, such as Google or Yahoo. If you know how to do this,... (1 Reply)
Discussion started by: newbie09
1 Replies

5. IP Networking

port access to site to site VPN

Setup a site to site VPN between two cisco routers. One of the site locations is unable to access ports such as https://example.com:9001 How do I let them go into port 9001? They can ssh, ftp, telnet and everything else. Is this a VPN issue or ACL access issue? I put permit ip host... (0 Replies)
Discussion started by: photon
0 Replies
Login or Register to Ask a Question
Sendpage::Page(3pm)					User Contributed Perl Documentation				       Sendpage::Page(3pm)

NAME
Sendpage::Page - encapsulates the data of an actual page SYNOPSIS
This module gets used in sendpage(1). DESCRIPTION
$page=Sendpage::Page->new(@recipients, $text, \%options); $data=$page->dump(); # storable dump of page data if ($page->deliverable()) { for ($page->reset(), $page->next(); $recip=$page->recip(); $page->next()) { $text=$page->text(); # get text of page $page->drop_recip(); # discard current recipient } $page->attempts(1); } $anyone_left=$page->has_recips(); $attempts=$page->attempts(); $page->option('from',"someone else"); # set option named 'from' $from=$page->option('from'); # get option named 'from' $page->option('from',$from,1); # delete option named 'from' BUGS
This needs more docs. AUTHOR
Kees Cook <kees@outflux.net> SEE ALSO
perl(1), sendpage(1), Sendpage::KeesConf(3), Sendpage::KeesLog(3), Sendpage::Modem(3), Sendpage::PagingCentral(3), Sendpage::PageQueue(3), Sendpage::Recipient(3), Sendpage::Queue(3) COPYRIGHT
Copyright 2000 Kees Cook. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2008-01-03 Sendpage::Page(3pm)