Search found 549 matches

by mudasir
Fri May 14, 2010 8:58 pm
Forum: Programming
Topic: find string script!
Replies: 7
Views: 11373

HI, I think below this piece of code might do the trick #!/bin/bash #set -x ORI_FILE=`pwd`/file STR_FILE=`pwd`/strings OUT_FILE=`pwd`/match rm -fr $OUT_FILE for i in `cat $STR_FILE` do cat $ORI_FILE | grep $i &> /dev/null if [ "$?" = "0" ]; then echo $i >> $OUT_FILE fi done t...
by mudasir
Fri May 14, 2010 6:30 pm
Forum: Administration
Topic: youtube routes on other interface
Replies: 11
Views: 10934

is that the complete list of ip addresses used by youtube. i dont think so.
by mudasir
Wed May 12, 2010 2:27 pm
Forum: Administration
Topic: surf control
Replies: 1
Views: 3223

Can you be more precise about blocking. as i googled surf control i found that it is web filter application. why would you want to block that.
by mudasir
Wed May 12, 2010 2:18 pm
Forum: Administration
Topic: Bonding 2 ADSL Broadband Lines
Replies: 2
Views: 5239

dear, 100% bonding of ADSL lines i think is not possible without load balancing, bcz you dont have any control over the protocols and technology that is being used at ISP end. in new Mikrotik they have introduced "PCC" Per Connection Classifier, which is more efficient and reliable method ...
by mudasir
Wed May 12, 2010 2:13 pm
Forum: Administration
Topic: PPPoE Server Howto [TXT]
Replies: 3
Views: 7070

Hi, the video is not at diglinux.com any more. that site is down bcz i am unable to give proper time. http://www.youtube.com/coolmudasir videos can be found at above link, however the video quality is not that good. about integrating billing system, its not that difficult at all. i have done radius ...
by mudasir
Wed Apr 21, 2010 1:14 pm
Forum: Installation
Topic: How to configure DHCP Server in Red Hat Linux ?
Replies: 11
Views: 17066

Dear i am not clear what do you want. Please clearly state what you need.
by mudasir
Mon Apr 19, 2010 6:26 pm
Forum: Installation
Topic: How to configure DHCP Server in Red Hat Linux ?
Replies: 11
Views: 17066

Dear,

Its not necessary to give Default Gateway, but i am not sure about DNS as i have not tried this, but you can always test it out.
by mudasir
Mon Apr 19, 2010 1:52 pm
Forum: Installation
Topic: How to configure DHCP Server in Red Hat Linux ?
Replies: 11
Views: 17066

Use the Installation medium to install DHCP Server RPM then copy the config above.
by mudasir
Mon Apr 19, 2010 11:47 am
Forum: Events
Topic: Redhat Certified Security Sepecialist(RHCSS) Training in LHR
Replies: 16
Views: 24668

Dear the only authentic institute in karachi for RedHat Training as per i know is Techno-Ed. I can go there and communicate with them
by mudasir
Mon Apr 19, 2010 11:37 am
Forum: Events
Topic: Redhat Certified Security Sepecialist(RHCSS) Training in LHR
Replies: 16
Views: 24668

Dear,

Thanks for quick reply. I am a student of BBA can you tell me in what way do you need my help, I will be more than happy to help you out.
by mudasir
Mon Apr 19, 2010 11:31 am
Forum: Installation
Topic: How to configure DHCP Server in Red Hat Linux ?
Replies: 11
Views: 17066

Which distro are you using
by mudasir
Mon Apr 19, 2010 11:27 am
Forum: Installation
Topic: Samba problem
Replies: 2
Views: 8375

AOA, Did you try the same with IP rather then computer name. And did you check your windows pc for viruses, and are all the services running properly on windows which are required for network. In your smb.conf in host allow section as fas as i remember when giving a complete IP address (i.e. 192.168...
by mudasir
Mon Apr 19, 2010 11:14 am
Forum: Installation
Topic: How to configure DHCP Server in Red Hat Linux ?
Replies: 11
Views: 17066

AOA, Dear its very simple. Just install DHCP Server, then copy the below conf to /etc/dhcpd.conf ans simply restart service (service dhcpd restart) # Some features, google them always-reply-rfc1048 true; ignore client-updates; authoritative; ddns-update-style interim; dynamic-bootp-lease-length 4320...
by mudasir
Mon Apr 19, 2010 11:05 am
Forum: Events
Topic: Redhat Certified Security Sepecialist(RHCSS) Training in LHR
Replies: 16
Views: 24668

AOA,

Dear when will you guyz come to karachi, i have been waiting for RHCSS for last 2 years.
by mudasir
Mon Apr 19, 2010 5:11 am
Forum: Administration
Topic: load balancing
Replies: 10
Views: 9622

AOA, Something like this might work iptables -A INPUT -i $NETWORK -m string --string "facebook" -j MARK --set-mark 1 iptables -A INPUT -i $NETWORK -m string --string "youtube" -j MARK --set-mark 2 Then route specific fwmark to specific routing table. Again it is just an example, ...