Jump to content

jesseconsopolus

Active Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by jesseconsopolus

  1. Amazon has an S3 encryption client you can use, and you use SSE.. and query string auth. Its super easy to use... you can encrypt the data simply by adding an additional request header when writing the object, and it will auto decrypt the data when its retrieved. Pretty handy. You can also set up users, passwords, etc. Amazon also logs every request made against the S3 resources. Server access logs capture all requests made against a bucket or the objects in it. Plus its all backed by Amazon... pretty reputable source, you know... although i do hear you Infiltrator, i have only used "owncloud" on my personal servers to ensure my data was safe... but this is handy for me to do vz dumps to. the pipe from amazon to my servers in dallas is gigE... so the 2gb vz dump, or 5gb dump is finished in no time.. on my slow, stolen interwebs at the house... that would take forever! i really see no need to encrypt a vz dump though... as not too many people know how to use it. but safe than sorry right?
  2. lol, basically cloud-enable all of your asset storage without rewriting a line of code....This could also serve as a network drive for less frequently updated data, such as your desktop’s mp3 or photo folders, or a backup drive for nightly rsyncs... I personally use it for vz dumps and such... just a cloud storage.
  3. Signed up and loving it... thought i'd share.. http://aws.amazon.com/s3/ then hit the FUSE up.... http://code.google.com/p/s3fs/downloads/list and here is the howto mount the s3 into EC2 instance.... https://forums.aws.amazon.com/thread.jspa?threadID=39361 and if you need to archive to Glacier..... https://github.com/uskudnik/amazon-glacier-cmd-interface rock it out..
  4. we use the dish style setup and base station sectors for our long range stuff, A LOT of nano locos. usually only use ubnt products.... www.ubnt.com , but we have ran a few yagi's as well.. That being said, after testing the limits of reach on all of their products... we showed far better results from a custom PRINGLES CAN!! lol. piece of all tread with washers spaced evenly, etc. google can show u how to build... what freq. are you running? i would assume 2.4 & 5 ghz? That ant. is 2.4 ...Yagi has to been pretty much line of sight to do any good, but can reach... if you have a yagi on a tripod, you need to have the ap visible. that antenna looks bad though...any obstructions as you prob. know will slow 2.4 & 5ghz down. the wave length is short, even shorter on 5ghz.. so overall what i am trying to say is if you are just hunting wifi, war driving or whatever... the alfa kicks butt. if you really want some "long range wifi" you need to look @ the 900mhz stuff... but not many ap's will use that..... we have made yagi's reach over 2 miles@2.4ghz... that is 80ft up and line of site... i guess i should ask what it is you are doing? alot depends on the power at the other end... you may have the power to reach it... but it may not have the power to get back to you.
  5. you could dd-wrt the firmware on the router... set your own custom page up... that is if they have it available....or if you have some linux knowledge try this below.... How To Change "BLOCKED BY NETGEAR FIREWALL" 1. Enable Debug Mode On Your Router a) http://192.168.0.1/setup.cgi?todo=debug B) http://192.168.0.1/block.htm c) view source of block.htm, copy it to notepad, edit to your liking. d) save modified block.htm as block.htm to your C:\ as c:\block.htm 2. Open up a telnet console a) telnet 192.168.0.1 B) enter your router username c) enter your router password 3. Navigate/Change/CHMOD a) cd /etc/ B) CHMOD 0777 block.htm c) mv block.htm old_block.htm 4. Upload a) open an FTP command line B) upload c:\block.htm to your server c) make sure it looks nice (NOTE: Angelfire/Geocities/etc... will not work, banners ruin it) 5. SECRET WGET in Router a) navigate to /etc/ in your router from telnet B) wget http://yourpaidwebhost.com/block.htm c) enjoy 6. Visit a blocked website a) visit a blocked website. i should say i have personally never tried this... but looks like it may at least point you in the right direction... or brick that bad boi! lulz
  6. Tried with that and got the NameVirtualHost has no virtual hosts... I edited the sites-available and sent recursive to sites-enabled, but still no go. The configs worked for quite some time... I ended up fixing by just deleting the KVM and starting all over. I think it was a problem with apache2. All the .conf files were working fine together. I was under the impression that the power down messed something up, turns out a customer to whom i gave access too deleted .htaccess and a ton of other files.... no telling. But it will be back up and running today. Thanks for the input. I did have a saved config with the <VirtualHost *>, so I will try that setup again and see what works to fix some apache start up issues..... NameVirtualHost 108.166.179.126 <VirtualHost *> ServerAdmin webmaster@www.pridemania.com ServerName www.pridemania.com ServerAlias www.pridemania.com # Indexes + Directory Root. DirectoryIndex index.html DocumentRoot /var/www/www.pridemania.com/ # CGI Directory ScriptAlias /cgi-bin/ /var/www/www.pridemania.com/cgi-bin/ <Location /cgi-bin> Options +ExecCGI </Location> ​ sorry to ask such a dumb q on here for the first couple of posts.... also found out that apache 2.XXX handles stuff way different than previous versions... so 2.XX will not handle the *:80 it will however handle the * properly... so if anyone has issues... Thanks for the reply midnitesnake...
  7. Issue with virtual hosting on port 80. This is a KVM Debian Squeeze 6.X box if that make a diff. and it is NAME Based hosting not I.P. Issue is with the hosts overlapping and the first site is taking precedence. This would usually be caused by needing a VirtualHost directive (which is there). I have been on this issue for around 4 hours now. My google foo is top notch.. but everything I have read points to the httpd.conf file which I actually wrote and debugged, (bc deb's was empty) but Debian does not even use this file, I have the apache2.conf pointing to ports.conf which I created rather than httpd.conf. I also have all the sites-enabled configs set.... But I can use either, both, etc. if needed, (which I have tried). When I do use the httpd.conf file I have created, I then get the return Address already in use: make_sock: could not bind to address. I have set port to *:80 and also tried 127.0.0.1 vice versa and every other config you can think of. I have created a virtual.conf file as well to see if that would fix.. just caused apache2 to dump and not start... so basically back to square one... Funny thing is this box was working on Thursday and many months prior... not exactly sure what happened... Any help is much appreciated... This is my config file.. named 000-default located in the /etc/apache2/sites-enabled/ # # Use name-based virtual hosting. # NameVIrtualHost 127.0.0.1 <---- I have used this, the ip of server, as well as *:80, etc.. various others... <VirtualHost www.example site.com> ServerAdmin webmaster@example site.com ServerName http://ip of server/ DocumentRoot /var/www/www.example site.com <Directory /> Options FollowSymLinks AllowOverride All </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ <Directory "/usr/lib/cgi-bin"> AllowOverride All Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> And here is the actual virtual site config... # # www.example site.com (/etc/apache2/sites-available/www.example site.com) # <VirtualHost www.example site.com> ServerAdmin webmaster@www.example site.com ServerName http://ip of server/ ServerAlias www.example site.com # Indexes + Directory Root. DirectoryIndex index.html DocumentRoot /var/www/www.example site.com # CGI Directory ScriptAlias /cgi-bin/ /var/www/www.example site.com/cgi-bin/ <Location /cgi-bin> Options +ExecCGI </Location> # Logfiles ErrorLog /var/www/www.example site.com/logs/error.log CustomLog /var/www/www.example site.com/logs/access.log combined </VirtualHost> Which all look fine to me..... here is my /etc/hosts... 127.0.0.1 localhost 127.0.0.1 assisted-living-facility.com 127.0.0.1 retirementcommunitiesinflorida.com 127.0.0.1 pridemania.com 108.166.179.126 debian.mcalester.net debian # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters My ports.conf file is below..... # If you just change the port or add more ports here, you will likely also # have to change the VirtualHost statement in # /etc/apache2/sites-enabled/000/default # This is also true if you have upgraded from before 2.2.9-3 (i.e. from # Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and # README.Debian.gz NameVirtualHost 127.0.0.1 Listen *:80 #<IfModule mod_ssl.c> # If you add NameVirtualHost *:443 here, you will also have to change # the VirtualHost statement in /etc/apache2/sites-available/default-ssl # to <VirtualHost *:443> # Server Name Indication for SSL named virtual hosts is currently not # supported by MSIE on Windows XP. # Listen 443 #</IfModule> #<IfModule mod_gnutls.c> # Listen 443 #</IfModule> I have just taken out the 443 for diag. purposes... everything is on 80.. Like I said before box was working on my first config just fine for many months... the box powered down thursday and now the issue... maybe a glitch in the matrix?
  8. 2 uscc phones... 2 linksys wrt54gs boxes flashed with ddwrt... xincom dual wan router... activate wifi on both phones... set ddwrt's to connect to each phone... lan into xincom router dual wan... 1 pretty good connection... plays xbox live etc.. just fine.. lulz... overkill i know. but yes.. pc is server and cannot be accessed.... but why not just bridge the eth0 and wlan0 connections? the router will get ip auto if set to dhcp... then you can access said server.. my friend shincow runs this setup for his stuff and works great.. old t i know...
×
×
  • Create New...