home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Linux and Unix
Ask a Tech Support Question (free)!

File manger? php+apache+samba(maybe mysql auth backend)

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 1874
Discussions: 200,912, Posts: 2,378,949, Members: 246,279
Old August 27th, 2004, 03:33 PM   Digg it!   #1 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
File manger? php+apache+samba(maybe mysql auth backend)

We have an engineer who lives 200+ miles from the office.

Has anyone used a web based file manager for something similar? If so, which one and how successful was it?

Another thought is to use a vpn, though satelite uploads tend to drop packets and cause havok with vpn servers (or so I'm told). If this is not true it could be a solution. If it is the solution than would I need to give the engineer a shell account and chroot--or would there be another way for him to access/edit samba shares I'm still unclear as to how this would work.


Any thoughs on how our electrical engineer can remotely access his drawings and edit them? We also want some sort of secure login. Clients dont matter that much, we mostly just want to protect the server. No account numbers or anything, just many hours($'s) in creating the files.
flashingcurser is offline   Reply With Quote
Old August 27th, 2004, 04:11 PM     #2 (permalink)
Not Really a Member
 
Join Date: Oct 2001
Posts: 25,371
What about a Terminal server, or a citrix solution?
I'd suggest diong a TS session over a VPN for security, but the Citrix should be OK as long as you put it with behind SSL
Depends on your budget
__________________
Helicopters don't fly; they vibrate so much and make so much noise that the earth rejects them.
vass0922 is offline   Reply With Quote
Old August 27th, 2004, 06:27 PM     #3 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I'm the new guy there and work with the electrical engineer. They currently have 5 win 98 computers on their peer to peer network (no enterprise solutions lol) and I'm trying to give them a few modern network services. They have NO buget for IT.

They will give me the time to set it up, a scrap heap of old computers, and money for some hardware.

The basics I would like to start with are:

Central job/file location (samba)
Remote back-up server (should be pretty easy with rsync/ssh+bash script)
Some sort of remote connection for the electrical engineer (?)

Then I would like to set up a local webserver for craploads of dynamic content.

Vass have you set up a gpl vpn? The ideas you gave me sound great -- but definately not in the buget.

Thanks
flashingcurser is offline   Reply With Quote
Old August 30th, 2004, 02:05 AM     #4 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I found WinSCP, It seems to do all we need for right now.

Linky

Great little proggie.

flashingcurser is offline   Reply With Quote
Old August 30th, 2004, 02:18 AM     #5 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
I use OpenVPN from either win2k or winxp to linux. This creates a virtual network device on both computers. I've run it through a cellphone GPRS connection regularly. Works well.
James T is offline   Reply With Quote
Old August 31st, 2004, 02:24 AM     #6 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
I am looking at openvpn.

2 Questions

1 Do I need ppp
2 Do I need tun/tap as modules (I now have it built in)



Gentoo doesnt seem to make the correct config directorys--when I get time I'll have to bild from source,


flashingcurser is offline   Reply With Quote
Old August 31st, 2004, 06:04 PM     #7 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
No need for ppp but of course you do need a network connection between the two boxes. i.e. send tcp packets back and forth on the chosen port.

To get the tap device in the kernel. I had
<M> Universal TUN/TAP device driver support

Other guff...

I'm still on openvpn 1.5.0 so these might be a little out of date on the new builds.

There was a reason I used tap instead of tun. I can't remember what it was sorry.

most configs in /etc/openvpn some in /etc/rc.d and build under the /usr/local/src tree

# my conf file on linux
dev tap
ifconfig 10.0.1.1 255.255.255.0
keysize 448
secret static.key
port 6001
comp-lzo
ping 15
verb 3
mute 5

I use the rc.d script from
# Contributed to the OpenVPN project by
# Douglas Keller <doug@voidstar.dyndns.org>

Put this in rc.local (I use slackware which has nice start scripts)
/etc/rc.d/rc.openvpn start

I always build these from the sources. It's generally the blindingly easy ./configure, make, make install sequence (which I read the READMEs to check).

On windows

remote xxx.xxx.xxx.xxx
port 6001
dev tap
ifconfig 10.0.0.2 255.255.255.0
secret static.key
keysize 448
ping 60
comp-lzo
verb 4
mute 10
James T is offline   Reply With Quote
Old September 1st, 2004, 12:55 AM     #8 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
Cool man, thank you for all the info.


On a side note, I may go back to slack (really my favorite distro). I like gentoo portage, but on rare occasions like this where the ebuild is messed up, I wish I had the eloquence and simplicity of slackware. I have to make the correct directories and guess at permissions.

Thanks again

flashingcurser is offline   Reply With Quote
Old September 1st, 2004, 12:59 AM     #9 (permalink)
Senior Member
 
flashingcurser's Avatar
 
Join Date: Jan 2002
Location: ThirdWorld- Montana
Posts: 608
Oh by the way, why the 448 bit key? Does that give much more performance over a 512 key?

Also can tunneling be built into the kernel? Or do you HAVE to have module?
flashingcurser is offline   Reply With Quote
Old September 1st, 2004, 01:12 AM     #10 (permalink)
Senior Member
 
James T's Avatar
 
Join Date: Jul 2004
Location: New Zealand
Posts: 582
I never tried building tunneling into the kernel. Tried stunnel (TCP only connections) and FreeS/WAN(complicated) and OpenVPN(easy and worked) and stopped there

From the man page.

The default is BF-CBC, an abbreviation for Blowfish in Cipher Block Chaining mode. Blowfish has the advantages of being fast, very secure, and allowing key sizes of up to 448 bits. Blowfish is designed to be used in situations where keys are changed infrequently.
James T is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Similar Threads
Thread Thread Starter Forum Replies Last Post
Would there be any problems with this? ChoaticWhisper Webmastering and Programming 9 March 8th, 2005 03:46 AM
php, mysql, apache, winxp sixf00t4 Webmastering and Programming 6 October 13th, 2002 05:12 AM
what's xml, sql, and whatever else there is? <[o_0]> Webmastering and Programming 18 January 27th, 2002 06:54 PM
PHP/mySQL Puzzler DeafScribe Webmastering and Programming 10 January 12th, 2002 10:25 AM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Is It Just Me? (2820)
Why is Khalid Sheikh Mohammed even .. (6)
California Passes Anti-Flat-HDTV Le.. (39)
Is the PSU I received dead? (10)
Install XP pro and a Vista laptop ?.. (8)
HIS HD5770 graphic card question (14)
A good PSU? (10)
Foreign voltage (7)
New Computer wont recognize XP disc (7)
Dept. of HS: NSA 'Helped' Develop V.. (12)
Print spooler problem (7)
Ideal cheap graph card for PC-Gamin.. (15)
EVGA 9800 gtx help with finding a g.. (7)
Modern Warfare 2: Who Bought It? (60)
Recent Discussions
How to convert and edit video/audio f.. (0)
Best file format to play on Windows H.. (0)
PSP Go bought in Japan (0)
Foreign voltage (7)
Asus P4G8X Mobo (3)
Print spooler problem (7)
windows vista security holes (2)
World's largest Monopoly Game using G.. (329)
EVGA 9800 gtx help with finding a goo.. (7)
Need hard disk drivers (4)
windows 7 internet problem (4)
What OS for a home server? (other tha.. (1)
Boot Problem? (0)
Logitech G9 laser gaming mouse $59.95.. (2)
$5 off any item with the purchase of .. (1)
Ideal cheap graph card for PC-Gaming? (15)
HIS HD5770 graphic card question (14)
Install XP pro and a Vista laptop ?? (8)
Cloning old drive to new drive (6)
Amptron monitor G17FP-Black (0)
A good PSU? (10)
Is the PSU I received dead? (10)
HP Pavillion Laptop ze4220 won't turn.. (7)
Dept. of HS: NSA 'Helped' Develop Vis.. (12)
Convert 5 pin Keyboard to USB (11)


All times are GMT -4. The time now is 10:42 AM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28