Main > Free Download Search >

Free dish network software for linux

dish network

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2763
Activism Network 3.2.1

Activism Network 3.2.1


Activism Network is a Web-based system that allows activists or anyone else to share contacts, resources (files), events. more>>
Activism Network is a Web-based system that allows activists or anyone else to share contacts, resources (files), events, email lists, and campaigns. etc.

It uses Google Maps.

It is similar to Friendster/MySpace, but more focussed on networking and less on the social aspect.

This area is for developers and users of the software who want to understand how it works, provide feedback, download the source code, report bugs, request features, or otherwise help out.

You can get an account, and then start commenting and writing your own pages.
<<less
Download (0.81MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
805 downloads
Network-I 1.4.0

Network-I 1.4.0


Captures, displays and analyses TCP/IP traffic more>> Network-I comprises a fast sniffer with a powerful filtering language, and a suite of tools to process the captured packets.
The possibilities range from the straightforward display of packets in exhaustive detail (or alternatively, in a 1-line summary mode) to measurement of traffic levels, and reporting on packet retransmission and losses.
It can also import (and export) capture files in tcpdump and snoop formats.
Network-I is therefore ideal for a troubleshooting network admin, and developers who want to debug the network traffic exchanged by their applications - or even for the curious student of networking who wants to look under the hood of TCP/IP.
This program is distributed as a set of pre-built Linux and Solaris packages, for ease of installation (and uninstallation).
<<less
Download (244KB)
Added: 2009-04-12 License: Freeware Price: Free
196 downloads
GNOME Network 1.4.1

GNOME Network 1.4.1


GNOME Network is a set of client network-oriented tools. more>>
GNOME Network is a set of client network-oriented tools, which currently contains a network information tool, a remote shell and desktop clients and a personal web server and a desktop sharing tool.
GNOME Network is Free Software distributed under the terms of the GNU GPL.
Enhancements:
Updated translations:
- gl (Ignacio)
- it (Alessio)
<<less
Download (0.46MB)
Added: 2005-10-04 License: GPL (GNU General Public License) Price:
1485 downloads
lisp-network-server 0.3

lisp-network-server 0.3


lisp-network-server is a simple framework for writing Common Lisp network applications. more>>
lisp-network-server is a simple framework for writing Common Lisp network applications.

lisp-network-server framework takes care of listening on the network, accepting the connection and starting a new thread with handler functions of your network aware application.

<<less
Download (0.010MB)
Added: 2006-05-09 License: LGPL (GNU Lesser General Public License) Price:
1267 downloads
Noname Network 0.1.7

Noname Network 0.1.7


Noname Network provides a powerful file-sharing network. more>>
Noname Network provides a powerful file-sharing network.

The Noname network is a gnutella-based network that features a different and more flexible protocol. The client and network currently support filesharing, but the protocol can be extended to support more features.

<<less
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
933 downloads
Pinger Network Tools 0.2

Pinger Network Tools 0.2


Pinger Network Tools is a simple frontend for ping, netstat, traceroute and whois. more>>
Pinger Network Tools is a simple frontend for ping, netstat, traceroute and whois.

My first ever Kommander script that I did in an effort to learn the Kommander scripting engine/style and to have something useful.

Built with Kommander Editor 1.2

<<less
Download (0.030MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1122 downloads
KDE Network Mapper 0.2.0

KDE Network Mapper 0.2.0


KNetmap is a network discovery, scanning, and probing tool for KDE. more>>
KDE Network Mapper is a network discovery, probing, and scanning tool. It is a KDE GUI for nmap.
Individual hosts or entire subnets can be scanned simultaneously, and the results are shown in the interface as queries finish, so the user neednt wait for the entire scan to finish.
Main features:
- Save to/Load from simple XML format.
- NMap Scanning.
- NMap XML Import.
Enhancements:
- Removed KDE 3.1 support...seriously, upgrade.
- Migrated to UIC for the prefs, more UIC coming soon.
- Refactored the host info page.
- We have graphics now!
- Near full revamp of nmap code, new parsing, scanning, and presentation.
- The automake code is less braindead now.
- Stability has increased overall, as well as usefullness.
- Seriously, soo many changes, if you want the details, than diff -Naur it.
<<less
Download (1.0MB)
Added: 2005-09-06 License: GPL (GNU General Public License) Price:
1512 downloads
network jack 2.0

network jack 2.0


network jack is an Internet troubleshooting and information gathering tool. more>>
network jack is an Internet troubleshooting and information gathering tool. It provides a Web interface to several common command-line tools, including ping, traceroute, dig, and whois, as well as a subnet mask and CIDR block calculator.
Current Modules which you can find in the application:
Pinger
- Ping a host on the internet (currently only IPv4)
Tracer
- Traceroute to a host on the internet from the web server (currently only IPv4)
Digger
- Do a DNS Dig of a hostname or IP address (for reverse lookups)
Drooler
- block list lookup (aka RBL query, blackhole lookup)
Whoser
- lookup for domain names and IP addresses / blocks
Netter
- Mask / CIDR calculator
Linker
- Front" page for the tools, provides spot for links
Main features:
- It is intended to be easy to add new modules
- Seperates html code into its own file so can be customized without modifying the program files
<<less
Download (0.027MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1211 downloads
Audio::LADSPA::Network 0.018

Audio::LADSPA::Network 0.018


Audio::LADSPA::Network is a semi automatic connection of Audio::LADSPA::* objects. more>>
Audio::LADSPA::Network is a semi automatic connection of Audio::LADSPA::* objects.

SYNOPSIS

use Audio::LADSPA::Network;
use Audio::LADSPA::Plugin::Play;
sub subscriber {
my ($object,$event) = @_;
$object = ref($object);
print "Recieved event $event from $objectn";
}
Audio::LADSPA::Network->add_subscriber(*,⊂scriber);

my $net = Audio::LADSPA::Network->new();
my $sine = $net->add_plugin( label => sine_fcac );
my $delay = $net->add_plugin( label => delay_5s );
my $play = $net->add_plugin(Audio::LADSPA::Plugin::Play);

$net->connect($sine,Output,$delay,Input);
$net->connect($delay,Output,$play,Input);

$sine->set(Frequency (Hz) => 440); # set freq
$sine->set(Amplitude => 1); # set amp

$delay->set(Delay (Seconds) => 1); # 1 sec delay
$delay->set(Dry/Wet Balance => 0.2); # balance - 0.2

for ( 0 .. 100 ) {
$net->run(100);
}
$sine->set(Amplitude => 0); #just delay from now
for ( 0 .. 500 ) {
$net->run(100);
}

This module makes it easier to create connecting Audio::LADSPA::Plugin objects. It automatically keeps the sampling frequencies correct for all plugins, adds control and audio buffers to unconnected plugins and prevents illegal connections.

It also implements an observable-type API via Class::Publisher that can be used to recieve notifications of events in the network. Amongst other things, this makes writing loosely coupled GUIs fairly straightforward.

<<less
Download (0.080MB)
Added: 2006-06-23 License: Perl Artistic License Price:
1219 downloads
Jimsim Network Simulator 1.1

Jimsim Network Simulator 1.1


Jimsim is an application that emulates several routers connected via virutal networks. more>>
Jimsim Network Simulator project can emulate several routers connected via virutal networks. You can connect to the routers with your own favorite telnet program.
Connecting to the Virtual Routers
Use your favorite telnet program to connect to each of the virtual routers. For example:
For router 1 type:
C:>telnet localhost 10000
For router 2 type:
C:>telnet localhost 10001
For router 3 type:
C:>telnet localhost 10002
Network Layout
Currently the network is configured like this:
access-list [1-99] [permit/deny] [ ip wildcard-mask | host a.b.c.d | any ]
ip acccess-list [standard] [name]
ip access-group
show access-list
show ip interface
show ip interface brief
debug interface
encapsulation [hdlc,ppp] (serial interfaces only)
bandwidth
clock rate (serial interfaces)
interface loopback0
User commands:
?
enable
exit
ping ip
show cdp
show cdp neigh
show cdp neigh detail
show interface
show interface e0,eth0,etc
show ip route
show version
Enable commands:
clear counters
clear counters interface
config terminal
copy running startup
copy startup running
debug all
debug ip routing
debug ip eigrp
debug cdp
disable
exit
reload
show run
show startup
show ip eigrp neighbors
show ip eigrp topology
traceroute ip
undebug all
undebug ip routing
undebug ip eigrp
undebug cdp
Config commands:
cdp run
enable password password
end
hostname
banner motd delimiter
banner exec delimiter
banner login delimiter
ip route network netmask dest
interface e0,eth0,etc
bandwidth value
ip address addr netmask
description
cdp enable
shutdown
line con0, console0, console 0
login
login local
password passwd
router eigrp number
network a.b.c.d
service password-encryption
user username password password
Version restrictions:
- The EIGRP support is very basic. Just the network command for now. (Neighbors dont expire.) You can disable EIGRP with "no router eigrp process_id"
- The routing table isnt 100% correct. It doesnt summarize subnets. Nor does it understand multiple routes to the same destination. This will be fixed in the next version.
- Traceroute seems to count extra hops. Its counting each remote interface on a router as a hop. So, when you traceroute from router1 to router3, it counts router2 twice (once for 192.168.1.2 and 10.1.1.1)
<<less
Download (0.65MB)
Added: 2006-03-08 License: Free for non-commercial use Price:
1325 downloads
Dirsave Graphical Network Utility 1.2

Dirsave Graphical Network Utility 1.2


Dirsave is graphical utility for intellectually generated senteces urls from you links. more>>
Dirsave is graphical utility for intellectually generated senteces urls from you links (example: pic01,pic02 or pic1,pic2).

After generate with 3 clicks you execute program and wget download this files.

Its no hard type:

http://nameserver/folder/pic1.jpg
http://nameserver/folder/pic2.jpg

or

http://nameserver/folder/docum01.xml
http://nameserver/folder/docum02.xml

Its yesterday day!

Dirsave program automatically generate links (and choise 1,2,3 or 01,02,03 or 001,002,003 numeration)!

Its easy and quick!

<<less
Download (0.25MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
891 downloads
My Network Catalog r1

My Network Catalog r1


My Network Catalog is an indexing engine that allows Windows shares to be bound together over a local network. more>>
My Network Catalog is an indexing engine that allows Windows shares (or Samba shares) to be bound together over a local network.

My Network Catalog allows an easy centralized search of all the files available over the network.

<<less
Download (0.021MB)
Added: 2006-06-16 License: LGPL (GNU Lesser General Public License) Price:
1230 downloads
Network FIFO 0.04

Network FIFO 0.04


Network FIFO project is a network object that provides data transfering tunnel across network in first in/first out manner. more>>
Network FIFO project is a network object that provides data transfering tunnel across network in first in/first out manner.

Simply put,

fifo server file is: monotech_fifo.pl
This script require Net::Server::NonBlocking at least 4.1(you can grab from CPAN)

% perl monotech_fifo.pl < address > < port >

and itll show up like this:

[root@WongWai monotech_fifo]# perl monotech_fifo.pl 192.168.3.52 12000
Listen on 192.168.3.52:20005
Listen on 192.168.3.52:12000

12000 is the port in which the fifo resides.
20005 is the port in which backoffice management resides.

--------------------------------------------------

port 20005 in which the management control resides can be accessed by "admin.pl"

% perl admin.pl < address >

for example

perl admin.pl 192.168.3.52

itll show something like this:

message>

where you can type some commands and press enter

the commands are:

message>readers
message>flush

(flush is the command that read all socket buffer of the admin client socket)

to show all reader in the fifo, it is very useful when some reader is connection disconnected by his ISP or readers machine hangs, the fifo will hold his connection forever (It is because the monotech_fifo.pl doesnt set SO_KEEPALIVE and TCP_KEEPALIVE which will be fixed in the future)

and

message>kill_reader[tab]< fifo name >

to kill any connection of < fifo name >

This package is heavily used by my company, so it is likely reliable.
<<less
Download (0.004MB)
Added: 2006-09-14 License: Free To Use But Restricted Price:
1141 downloads
Network Probe 2.1

Network Probe 2.1


Network Probe and protocol analyzer is the ultimate tool for traffic-level network monitoring, troubleshooting, analysis. more>>
Network Probe and protocol analyzer is the ultimate tool for traffic-level network monitoring, troubleshooting, analysis,
If your network is crawling to a standstill, and you suspect there might be a problem with the network traffic, Network Probe will quickly help you identify what is causing the problem, show you who is generating any troublesome traffic, and where the traffic is being transmitted.
Network Probe will collect traffic statistics for all protocols, hosts, and conversations on your network, and show you all the top talkers and listeners on your network. Hosts generating large amounts of traffic such as music and movie streaming, playing online games, or listening to streaming media are easily identified.
Main features:
- Watch in real time which protocols are used on your network
- Watch in real time which hosts are active on your network and the Internet
- Watch in real time which conversations are taking place on your network and to and from the Internet
- Watch in real time detailed protocol statistics per host
- Watch in real time detailed protocol statistics per conversation
- Watch in real time network card details for your network
- Watch traffic amount of selected entries relative to the total and filtered traffic
- Watch traffic amount over time for any host, conversation, and protocol
- Watch in real time network throughput for the entire network segment
- Inspect detailed logged statistical data from days and weeks earlier
- Filter out and search for selected protocols, hosts, conversations, and network cards
- Sort network traffic by amount of data transmitted or received
- Export network traffic statistics data
- Configure users with restricted access to statistical data
- Password protected login
<<less
Download (2.3MB)
Added: 2007-03-20 License: Freeware Price:
958 downloads
Java Network Stack 1.1

Java Network Stack 1.1


Java Network Stack provides a Java library for research oriented network programming. more>>
Java Network Stack provides a Java library for research oriented network programming.

Java Network Stack is a library used by the DIMES project to create new internet measurements. It provides a clean API for packet manipulation, send, receive, filter, and analysis. It is a unification of raw socket capabilities, MAC level networkingm, and IPv6 capabilities.

<<less
Download (1.5MB)
Added: 2007-04-25 License: LGPL (GNU Lesser General Public License) Price:
918 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5