Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 5,208
» Latest member: slotqris
» Forum threads: 4,029
» Forum posts: 16,404

Full Statistics

Online Users
There are currently 306 online users.
» 0 Member(s) | 303 Guest(s)
Bing, Google, Yandex

Latest Threads
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 91
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 74,558
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 30,919
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,655
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,065
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,659
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 104,056
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 44,646
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 35,053
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,253

 
  Linux Kernel 2.4.35 Released
Posted by: anyweb - 2007-07-27, 10:55 AM - Forum: Linux News - No Replies


Quote:"After 6 months of careful integration and testing, I'm happy to announce availability of Linux 2.4.35," 2.4 maintainer Willy Tarreau announced on the lkml. This is the second stable 2.4 kernel released since Willy became the 2.4 kernel maintainer nearly a year ago in August of 2006. Source level changes can be viewed through the linux-2.4 gitweb interface.
 

more info > [/url][url=http://kerneltrap.org/node/14003]http://kerneltrap.org/node/14003

 

via osnews.com

Print this item

  dhcp.conf
Posted by: gocool - 2007-07-26, 11:45 PM - Forum: Network Problems - No Replies


Hello folks~

Gotta a problem configuring the dhcp.conf in redhat linux system acting as a DHCP server. Here is the connection scenario:

I wanted to connect CPE devices(routers in this case, can be PCs) to the ONU(optical network unit) devices which in turn are connected to the OLT(optical Line termination) device through a splitter. All the devcies were supposed to get the IP addresses and other basic config from the DHCP.conf file.

 

I could get the IP addresses for the OLT and the ONUs as I matched the mac addresses with the IP addresses in the config file. The problem lies in getting the addresses for the CPE devices. I want the CPE devices to get certain addresses that I specify in the file associated to a particular ONU that the CPE devices are connected to.

I got the config file from a friend of mine which works for OLT and ONUs but not for CPE devices. Could anyone please go through the config file that follows and let me know what changes I have to make to make it run?

 

here is the config file:

 



Code:
option domain-name "aaa.com";
option domain-name-servers 192.168.1.44;
option routers 192.168.1.1;
option broadcast-address 192.168.1.255;
option domain-name-servers 10.10.10.4, 10.10.10.8;
option log-servers 192.168.1.11;
#option time-offset 0xffff8f80;
option time-offset -28800;
option time-servers 192.168.1.11, 131.107.1.10;
ddns-update-style none;
default-lease-time 36000;



# Echo back options 82
if exists agent.circuit-id {
    option agent.circuit-id = option agent.circuit-id; }

if exists agent.remote-id {
   option agent.remote-id = option agent.remote-id; }

###################################
#          Dima EVAL              #
###################################
###################################
#          Dima OLT               #
###################################
host Dima_olt {
option subnet-mask 255.255.255.0;
hardware ethernet 00:31:32:33:34:35;
fixed-address 192.168.1.99;
option host-name "DimasOLT111";
}
host onu1 {
option subnet-mask 255.255.255.0;
hardware ethernet 00:13:49:fb:23:9e;
fixed-address 192.168.1.201;
option host-name dOnu1;
next-server 192.168.1.11;
filename "Basic1_0.bfg";
}
host onu2 {
option subnet-mask 255.255.255.0;
hardware ethernet 00:13:49:fb:23:a3;
fixed-address 192.168.1.202;
option host-name dOnu2;
next-server 192.168.1.11;
filename "Basic1_1.bfg";
}

host onu3 {
option subnet-mask 255.255.255.0;
hardware ethernet 00:13:49:fb:23:a9;
fixed-address 192.168.1.203;
option host-name dOnu3;
next-server 192.168.1.11;
filename "Basic1_1.bfg";
}

host onu4 {
option subnet-mask 255.255.255.0;
hardware ethernet 00:13:49:fb:23:b1;
fixed-address 192.168.1.204;
option host-name dOnu4;
next-server 192.168.1.11;
filename "Basic1_1.bfg";
}

class "dima_onu1_cpe" {
match if binary-to-ascii(16, 8, ":", substring(option agent.remote-id, 2, 6))    = "00:13:49:fb:23:9e"
and    binary-to-ascii (10, 8, "/", suffix ( option agent.circuit-id, 2))     = "0/5";
}

class "dima_onu2_cpe" {
match if binary-to-ascii(16, 8, ":", substring(option agent.remote-id, 2, 6))    = "00:13:49:fb:23:a3"
and    binary-to-ascii (10, 8, "/", suffix ( option agent.circuit-id, 2))     = "0/5";
}

class "dima_onu3_cpe" {
match if binary-to-ascii(16, 8, ":", substring(option agent.remote-id, 2, 6))    = "00:13:49:fb:23:a9"
and    binary-to-ascii (10, 8, "/", suffix ( option agent.circuit-id, 2))     = "0/5";
}

class "dima_onu4_cpe" {
match if binary-to-ascii(16, 8, ":", substring(option agent.remote-id, 2, 6))    = "00:13:49:fb:23:b1"
and    binary-to-ascii (10, 8, "/", suffix ( option agent.circuit-id, 2))     = "0/5";
}

subnet 192.168.1.0 netmask 255.255.255.0 {
   max-lease-time 172800;
pool {
    deny dynamic bootp clients;
    allow members of "dima_onu1_cpe";
    range 192.168.1.210 192.168.1.219;
}

pool {
    deny dynamic bootp clients;
    allow members of "dima_onu2_cpe";
    range 192.168.1.220 192.168.1.229;
}

pool {
    deny dynamic bootp clients;
    allow members of "dima_onu3_cpe";
    range 192.168.1.230 192.168.1.239;
}

pool {
    deny dynamic bootp clients;
    allow members of "dima_onu4_cpe";
    range 192.168.1.240 192.168.1.249;
}
}
#########################################################################
#                         DHCP MAP
#########################################################################
#------------------------------------------------------------------------
#    GROUP    |    OLT            |    ONU            |    CPE
#------------------------------------------------------------------------
# Dima OLT  | 192.168.1.99    | 192.168.1.210                  | 192.168.1.220-192.168.1.229
#           |                 | 192.168.1.211                       | 192.168.1.230-192.168.1.239
#           |                 | 192.168.1.212                       | 192.168.1.240-192.168.1.249
#           |                 | 192.168.1.213                       | 192.168.1.250-192.168.1.252
#------------------------------------------------------------------------
#########################################################################




 

 

Awaiting your reply.

 

thanks in advance,

gocool

Print this item

  Wireless network help
Posted by: Mike - 2007-07-25, 02:04 PM - Forum: Wireless - Replies (1)

I just installed YDL for my PS3 and I'm a complete noob to the linux world as a whole. I wanted to know how to properly go about getting my wireless router's signal picked up by the PS3 internal wireless network card. Everythign works flawlessly in teh regular PS3 XMB. Thanks in advance for all your help.

Print this item

  Hi
Posted by: BopperT - 2007-07-25, 09:29 AM - Forum: Hello - Replies (1)


Hi, not really sure what to say... ;)

I'm new to Linux, I'm running Ubuntu 7.04 and Skolelinux on VMWare server as virtual machines, (a program which I'd recommend to any fellow noobs.) I'm interested in learning as much as possible, as I'm hoping to go into IT support when I finish school; I'd not like to put my name to something as a professional without knowing as much as possible. I'll almost certainly be asking a few questions as well.

See you around!

Print this item

  Hello, my name is SkullFire XD
Posted by: SkullFire - 2007-07-24, 08:27 AM - Forum: Hello - Replies (4)


Hello all, I would like to introduce myself as SkullFire. I am not entirely new to the open source/Linux scene, but I can't say I'm even close to know the standards :) Recently (about a week ago) I have installed Linux to my desktop computer. Where I've had previous distributions on my system before, this one has lasted 7 days without either being forgotten or deleted. I had given up on Linux before, because i couldn't understand it, but times have changed, and I'm looking for a new experience :) Something fresh and fun. I am also into video gaming and music too. Two of the core reason's I couldn't use Linux... my games wouldn't work and my sound card was always incompatible.

 

I hope to have a fun time here in this community, and I wish to learn many things and meet lots of people too :)

 

-SkullFire

Print this item

  dual boot or virtual machine
Posted by: deadcellplus - 2007-07-24, 05:49 AM - Forum: Just Starting Linux - Replies (3)


hi, i need to be able to run windows programs from time to time, and i would like to know which should i do?

 

dual boot or virtual machine?

 

really right now, all im worried about is which one is the easiest to set up, or in the case of both of them being complex which one is "better" i guess.

 

i think im leaning towards the virtual machine because it seems like it would be "safer" from virii because i could simply start over very easily, by like just restarting the OS right? but it would be slower because it has to emulate everything right?

 

thank you!

 

edit: I have tried wine, but for some reason it locks up my box when i try to do anything with it

Print this item

  Graphics drivers+Beryl Whitecube
Posted by: Deltanoob - 2007-07-24, 05:42 AM - Forum: Fedora 7 - No Replies


Hello all.

I decided to give linux another chance.

But i cannot get beryl (which is why i am trying linux again) to work.

I get this White screen/White cube.

I think its my drivers.

Does linux Fedora 7 have drivers for the ATI Diamond Stealth X1550 256mb Graphics Card besides the proprietary drivers?

I cannot get those drivers installed. Mostly because i do not know how to install them using the console. (terminal)

So guys can ya help a noob?

 

 

 

 

Oh and i think it should be: www.linux-noob.com By masters for the noobs :-)

Print this item

  CityofAsh's Gnome Desktop - Ubuntu 7.04
Posted by: CityofAsh - 2007-07-24, 01:14 AM - Forum: Linux - Replies (1)


Latest screen shot.

<a class="ipsAttachLink ipsAttachLink_image" href="<fileStore.core_Attachment>/monthly_07_2007/post-649-1185239535.jpg" data-fileid="904">[img]<fileStore.core_Attachment>/monthly_07_2007/post-649-1185239535.jpg[/img]</a>



Attached Files
.jpg   screenshot.jpg (Size: 268.67 KB / Downloads: 0)
Print this item

  Trying to convert videoes to a different format....
Posted by: Why did I get this? - 2007-07-22, 08:45 AM - Forum: How Do I? - Replies (4)

The program I'm trying to use is LIVES(Linux Video Editing Software), but whenever I try to install it, it says that the libraw1394 is unsattisfied, and when I try to install libraw, it says that it's already installed. Can you help me get this problem fixed, or tell me about another program that can convert OGM video files to VOB video files? PLEASE?

Print this item

  An idea I came up with...
Posted by: SkullFire - 2007-07-21, 04:06 AM - Forum: Games in Linux - Replies (1)


I have a GP2x, and I love how easy it is to use a menu with a gamepad to select games! So I though to myself... how about I build a semi-decent computer and hook it up to the TV (which has a VGA port). Here arises my problems. I know somewhat what I want for specs, but what should I be looking for hardware (as in Linux compatibility)? What distro would work best (in your opinion)? And is there a menu program for linux that can run off a USB gamepad?

 

This is what I want to do. I want to put a ton of games from Doom to Supertux, and some emulators, and then maybe some extra media functions (DVD, MP3, whatever). The menu would have to look decent and be able to execute the program, then reopen itself when the program is closed...

 

 

Can anyone help me with this?

 

Thanks :)

-SkullFire

Print this item