techweavr
Techweavr Consultancy & IT Solutions Co.
NEWS & EVENTS
Technical Glitch Leaks Special SXSW Foursquare Badges Early

Blippy Gets A Facebook-Inspired Redesign And An Important New Privacy Feature

Google Gains, Apple Stays Steady, And Palm Loses In Smartphone Share

Redbeacon Fine Tunes Service, Goes Social, Continues To Be Awesome

Facebook Is Testing Using Foursquare And Gowalla Check-Ins For Its Location Launch

Ask FCC Chairman Julius Genachowski About The Internet On YouTube

GDC: OnLive?s Cloud-Powered Gaming Service To Launch June 17

UpNext: Three New Cities, Glowing Foursquare Checkins, And CityGrid Listings

Calling All Designers: Weebly Gives Users More Variety With New Theme Community

Get Satisfaction Turns To Facebook To Socialize Customer Support

Mobile App Directory Mplayit Adds Recommendations From App Gurus

The Field Guide To Modern 3D Glasses

The Facebook Imperative Cannot Be Stopped

Radian6 Launches Powerful Social Media Engagement and Monitoring Console For Brands And Agencies

Brazil: Copy Cats? What Copy Cats?

Kyte Now Offering Broadcast-Quality Live Video Streaming Backpack

The Yahoo Cycling Team Is Going To Love This New Google Maps Feature

Quote Of The Day: MySpace Co-President? ?Hell, Yeah?

More Talent Walks Out The Door At MySpace: Three Key Employees Go To Gravity

Comscore Study: Social Gamers Want Marketing Offers For Currency

In The SXSW Location War, Loopt Hopes The Correct Weapon Is Events

Google Apps Marketplace: Instantly Connect Your App To 25 Million Users, Profit.

Web-Based Productivity Suite Zoho Finds A Place In The Google Apps Marketplace

Socialwok Takes A Stroll In The Google Apps Marketplace

MetaLab Accuses Mozilla Of Plagiarizing Its Design (Updated)

MICROSOFT ACTIVE DIRECTORY


Active Directory (AD) is an implementation of LDAP directory services by Microsoft for use primarily in Windows environments. Its main purpose is to provide central authentication and authorization services for Windows based computers. Active Directory also allows administrators to assign policies, deploy software, and apply critical updates to an organization. Active Directory stores information and settings in a central database. Active Directory networks can vary from a small installation with a few hundred objects, to a large installation with millions of objects.

Active Directory was previewed in 1996, released first with Windows 2000 Server edition, and revised to extend functionality and improve administration in Windows Server 2003.

Active Directory was called NTDS (NT Directory Service) in older Microsoft documents. This name can still be seen in some AD binaries.

There is a common misconception that Active Directory provides software distribution. Software distribution is run by a separate service that uses additional proprietary schema attributes that work in conjunction with the LDAP protocol. Active Directory does not automate software distribution, but provides a mechanism in which other services can provide software distribution.
HACK

NAGIOS HOST AND SERVICE MONITORING


NagiosĀ® is an Open Source host, service and network monitoring program. Nagios is a host and service monitor designed to inform you of network problems before your clients, end-users or managers do. It has been designed to run under the Linux operating system, but works fine under most *NIX variants as well. The monitoring daemon runs intermittent checks on hosts and services you specify using external "plugins" which return status information to Nagios. When problems are encountered, the daemon can send notifications out to administrative contacts in a variety of different ways (email, instant message, SMS, etc.). Current status information, historical logs, and reports can all be accessed via a web browser.
HACK

LINUX DHCP/FTP/DNS SERVER


DHCP
Short for Dynamic Host Configuration Protocol, a protocol for assigning dynamic IP addresses to devices on a network. With dynamic addressing, a device can have a different IP address every time it connects to the network. In some systems, the device's IP address can even change while it is still connected. DHCP also supports a mix of static and dynamic IP addresses.

Dynamic addressing simplifies network administration because the software keeps track of IP addresses rather than requiring an administrator to manage the task. This means that a new computer can be added to a network without the hassle of manually assigning it a unique IP address.

Depending on implementation, the DHCP server has three methods of allocating IP-addresses:

Manual allocation, where the DHCP server performs the allocation based on a table with MAC address - IP address pairs manually filled by the server administrator. Only requesting clients with a MAC address listed in this table get the IP address according to the table.

Automatic allocation, where the DHCP server permanently assigns to a requesting client a free IP-address from a range given by the administrator.

Dynamic allocation, the only method which provides dynamic re-use of IP addresses. A network administrator assigns a range of IP addresses to DHCP, and each client computer on the LAN has its TCP/IP software configured to request an IP address from the DHCP server when that client computer's network interface card starts up. The request-and-grant process uses a lease concept with a controllable time period. This eases the network installation procedure on the client computer side considerably.

FTP
FTP or File Transfer Protocol is used to transfer data from one computer to another over the Internet, or through a network.

Specifically, FTP is a commonly used protocol for exchanging files over any network that supports the TCP/IP protocol (such as the Internet or an intranet). There are two computers involved in an FTP transfer: a server and a client. The FTP server, running FTP server software, listens on the network for connection requests from other computers. The client computer, running FTP client software, initiates a connection to the server. Once connected, the client can do a number of file manipulation operations such as uploading files to the server, download files from the server, rename or delete files on the server and so on. Any software company or individual programmer is able to create FTP server or client software because the protocol is an open standard. Virtually every computer platform supports the FTP protocol. This allows any computer connected to a TCP/IP based network to manipulate files on another computer on that network regardless of which operating systems are involved (if the computers permit FTP access).FTP servers can be set up anywhere between game servers, voice servers, internet hosts, and other physical servers.

DNS
Short for Domain Name System (or Service or Server), an Internet service that translates domain names into IP addresses. Because domain names are alphabetic, they're easier to remember. The Internet however, is really based on IP addresses. Every time you use a domain name, therefore, a DNS service must translate the name into the corresponding IP address. For example, the domain name www.example.com might translate to 198.105.232.4.

The DNS system is, in fact, its own network. If one DNS server doesn't know how to translate a particular domain name, it asks another one, and so on, until the correct IP address is returned.
HACK