Skip to main content

Simulation of ARP/RARP

Here is the core simulation of the ARP(Address Resolution Protocol) and RARP(Reverse Address
Resolution Protocol) ARP used to map the ip address with the corresponding MAC address and
RARP do that in reverse. it maps the MAC with the ip.

#include "stdio.h"
#include "string.h"
int main() {
    char table[3][2][40];
    char ipin[10],macin[30];
    int i,j,found;
    strcpy(table[0][0],"127.0.0.1");
    strcpy(table[0][1],"44:dd:22:11:33");
    strcpy(table[1][0],"10.1.1.8");
    strcpy(table[1][1],"33:aa:fe:4e:2d");
    strcpy(table[2][0],"10.1.8.5");
    strcpy(table[2][1],"23:a3:5d:33:9d");
    
    printf("IP address\t MAC address\n");
    for(i=0;i<3;i++) {
    printf("%s\t %s\n",table[i][0],table[i][1]);
    }

    printf("simulating ARP\n\n");
    printf("enter the IP address\n");
    scanf("%s",&ipin);
    for(i=0;i<3;i++) {
    if(strcmp(ipin,table[i][0])==0) {
        printf("%s mac id is %s\n\n",ipin,table[i][1]);
        found=1;
    }
    }
    if(found!=1) {
    printf("mac not found\n\n");
    }

    printf("simulating RARP\n\n"); 
    printf("enter the MAC address\n");
    scanf("%s",&macin);
    for(i=0;i<3;i++) {
    if(strcmp(macin,table[i][1])==0) {
        printf("%s ip is %s\n",macin,table[i][0]);
        found=1;
    }
    }
    if(found!=1) {
    printf("ip not found\n");
    }

    return 0;
}

Comments

Popular posts from this blog

விண்டோஸை விட லினக்ஸ் சிறந்தது: பத்து காரணங்கள்

லினக்ஸ் பயன்படுத்த கடினம், விண்டோஸே சிறந்தது என கருதுபவர்களுக்காக 1. வைரஸ் அபாயம் கிடையாது: ஆம். பொரும்பாலான வைரஸ் நிரல்கள் விண்டோஸிற்காக எழுதப்படுபவை. லினக்ஸால் win32  நிரல்களை  செயல்படுத்த முடியாது. எனவே வைரஸ் வரும் என்ற கவலை வேண்டாம். 2. திற-மூலமென்பொருள் - விண்டோஸ் போல் அல்லாமல் லினக்ஸ் ஆனது திற-மூல-இயங்குதளம்(open-source).  எனவே நம்முடைய தேவைக்கு ஏற்ப நாம் இதனை மாற்றவே, பிறருக்கு அளிக்கவோ முழு சுதந்திரம் உண்டு.

சிடி/டிவிடிகளை காப்பி செய்யாதீர்கள்.

நாம் பொதுவாக டிவிடி படங்களை நம்முடைய கணினிகளில் டிவிடி டிரைவ்களில் போட்டு பார்ப்பது பழக்கம். நாம் நண்பர்களிடம் இருந்தோ அல்லது வேறுயாரிடமாவது இருந்தோ படங்களை வாங்கி உடனே பார்த்துவிட்டு தருவதற்கு முடியவில்லை என்றால் நாம் படங்களை காப்பி செய்து அதனை நம் கணினீயில் சேமிப்போம். அவ்வாறு சேமித்த படங்களை டிவிடி டிரைவில் போட்டு பார்ப்பது போன்றே சௌகரியமாக பார்ப்பது என்பது இயலாது. ஒவ்வொரு fileஐயும் நாம் விடியோ ப்ளேயரில் திறக்க வேண்டும். அதில் பலவிதமான fileகள் இருக்கும். நாம் ஒவ்வொன்றாக திறந்து நாம் பார்க்க வேண்டிய அந்த படத்தை பார்ப்பதற்குள் நேரம் ஆகிவிடும். சில fileகள் ஒழுங்காக காப்பி ஆகியிருக்காது. சில டிவிடிக்கள் காப்பி ஆக மறுக்கும்.

need your response

It has been a long time... my rest hours are reduced i only sleep for 5 to 6 hours a day.. so i can't post frequently.. sorry friends.. my university is a good place to refine myself. yes..! thoughts about my programming computers are refined there.. i always wanted share my experience.. but i feared of thinking that it will helpful for you or not.. most of us don't like to hear stories of others. so i stopped blogging and of course having less time.. i have earned some good friends there... who are interested in open-source technology.. very few of us only know the linux platform.. this semester mini project also in open softwares like mysql, postgrey sql i will start blogging my experience if you are interested.. regards, Mani G