LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   code required (https://www.linuxquestions.org/questions/programming-9/code-required-4175623904/)

Kushalj 02-17-2018 04:14 AM

code required
 
how to code rsa algorithim between the two nodes in ns2 tcl file

pan64 02-17-2018 04:31 AM

https://is.gd/27cw0C

Kushalj 02-17-2018 04:37 AM

i want to make a prog which SECURE INTRUSION DETECTION SYSTEM IN MOBILE AD HOC
NETWORKS USING RSA ALGORITHM!

Mara 02-17-2018 05:27 AM

Could you describe more what you'd like to do? I do not understand how RSA would secure your intrusion detection. What do you want to secure the system against? Where will the RSA be implemented (at which protocol layer)?

pan64 02-17-2018 06:54 AM

https://www.linuxquestions.org/quest...2/#post5810424

TB0ne 02-17-2018 10:37 AM

Quote:

Originally Posted by Kushalj (Post 5820760)
i want to make a prog which SECURE INTRUSION DETECTION SYSTEM IN MOBILE AD HOC
NETWORKS USING RSA ALGORITHM!

Yes, we understand what you want; but as you were told in your OTHER thread about the same topics:
  1. We WILL NOT look things up for you
  2. We WILL NOT write your code for you
  3. *YOU*, personally, are expected to do your own work, post your efforts, and tell us where you're stuck
After you do these three things, and explain your actual PROBLEM in detail, we will be happy to help. Otherwise, there is nothing for us to help WITH....since all you've done so far is tell us "I want xxxxx".

Kushalj 02-17-2018 10:53 AM

ok ,in between two nodes i want to apply rsa algorithim but i dont know how to put ?

keefaz 02-17-2018 10:56 AM

ssh key?

Kushalj 02-17-2018 10:58 AM

yes

keefaz 02-17-2018 11:40 AM

Code:

ssh-keygen -t rsa -b 4096

TB0ne 02-17-2018 11:42 AM

Quote:

Originally Posted by Kushalj (Post 5820879)
ok ,in between two nodes i want to apply rsa algorithim but i dont know how to put ?

You seem to be either intentionally ignoring what you're told, or just don't understand. We UNDERSTAND WHAT YOU WANT....and if you want help, you need to POST THE CODE/THINGS that ****YOU HAVE DONE/TRIED/RESEARCHED**** on your own. Do you understand that????

We WILL NOT write it for you, or research it for you. You have STILL not shown one single piece of effort of your own, in any of your threads, but keep repeating what you want over and over.

Here's a different tactic to try: YOU go do something, show us what you did, and tell us what the results were. THEN ask us for help.

Kushalj 02-17-2018 11:49 AM

ok you can't understand

TB0ne 02-18-2018 10:42 AM

Quote:

Originally Posted by Kushalj (Post 5820901)
ok you can't understand

WE can't understand?? Sorry, no...we understand very well what you're looking for. You are not understanding that you won't get handouts, despite rephrashing your question over and over. Show your efforts and tell us where you're stuck, and we will help. If you don't, you will get NOTHING. Do you understand that?

astrogeek 02-18-2018 04:26 PM

Quote:

Originally Posted by Kushalj (Post 5820756)
how to code rsa algorithim between the two nodes in ns2 tcl file

ok ,in between two nodes i want to apply rsa algorithim but i dont know how to put ?

ok you can't understand

Please review the Site FAQ for guidance in posting your questions and general forum usage.

Especially, please read the link at bottom of that page, How To Ask Questions The Smart Way.

As noted in the above FAQ link, while members are willing to help with your problems, LQ is not a help desk or a place to have others complete your work for you. Most members will expect you to have performed simple online searches for information and to have tried to find a solution on your own, before asking your questions here.

It is possible that others might not understand your questions, but it is up to you to provide a complete description of your problem, including what you have done so far and where your are stuck. The better you explain, the better we can help.

In order for this thread to continue, please try to rephrase your question as described in the FAQ, and make effort to interact more usefully with those offering help. I would also ask others to refrain from further replies until you have done so.
.

Kushalj 02-23-2018 07:49 AM

How to generate the xgraph for below tcl file ?

#======================================================================
# Define options
#======================================================================
set val(chan) Channel/WirelessChannel ;# channel type
set val(prop) Propagation/TwoRayGround ;# radio-propagation model
set val(ant) Antenna/OmniAntenna ;# Antenna type
set val(ll) LL ;# Link layer type
set val(ifq) Queue/DropTail/PriQueue ;# Interface queue type
set val(ifqlen) 50 ;# max packet in ifq
set val(netif) Phy/WirelessPhy ;# network interface type
set val(mac) Mac/802_11 ;# MAC type
set val(nn) 6 ;# number of mobilenodes
set val(rp) AODV ;# routing protocol
set val(x) 800
set val(y) 800



set ns [new Simulator]
#ns-random 0

set f [open out.tr w]
$ns trace-all $f
set namtrace [open out.nam w]
$ns namtrace-all-wireless $namtrace $val(x) $val(y)
set topo [new Topography]
$topo load_flatgrid 800 800

create-god $val(nn)

set chan_1 [new $val(chan)]
set chan_2 [new $val(chan)]
set chan_3 [new $val(chan)]
set chan_4 [new $val(chan)]
set chan_5 [new $val(chan)]
set chan_6 [new $val(chan)]

# CONFIGURE AND CREATE NODES

$ns node-config -adhocRouting $val(rp) \
-llType $val(ll) \
-macType $val(mac) \
-ifqType $val(ifq) \
-ifqLen $val(ifqlen) \
-antType $val(ant) \
-propType $val(prop) \
-phyType $val(netif) \
#-channelType $val(chan) \
-topoInstance $topo \
-agentTrace ON \
-routerTrace ON \
-macTrace ON \
-movementTrace OFF \
-channel $chan_1

proc finish {} {
global ns namtrace
$ns flush-trace
close $namtrace
exec nam -r 5m out.nam &
exit 0
}

# define color index
$ns color 0 blue
$ns color 1 red
$ns color 2 chocolate
$ns color 3 red
$ns color 4 brown
$ns color 5 tan
$ns color 6 gold
$ns color 7 black

set n(0) [$ns node]
$ns at 0.0 "$n(0) color blue"
$n(0) color "0"
$n(0) shape "circle"
set n(1) [$ns node]
$ns at 0.0 "$n(1) color red"
$n(1) color "blue"
$n(1) shape "circle"
set n(2) [$ns node]
$n(2) color "tan"
$n(2) shape "circle"
set n(3) [$ns node]
$n(3) color "red"
$n(3) shape "circle"
set n(4) [$ns node]
$n(4) color "tan"
$n(4) shape "circle"
set n(5) [$ns node]
$ns at 0.0 "$n(5) color blue"
$n(5) color "red"
$n(5) shape "circle"


for {set i 0} {$i < $val(nn)} {incr i} {
$ns initial_node_pos $n($i) 30+i*100
}
$ns at 0.0 "[$n(1) set ragent_] malicious"

$ns at 0.0 "$n(0) setdest 100.0 100.0 3000.0"
$ns at 0.0 "$n(1) setdest 200.0 200.0 3000.0"
$ns at 0.0 "$n(2) setdest 300.0 200.0 3000.0"
$ns at 0.0 "$n(3) setdest 400.0 300.0 3000.0"
$ns at 0.0 "$n(4) setdest 500.0 300.0 3000.0"
$ns at 0.0 "$n(5) setdest 600.0 400.0 3000.0"

# CONFIGURE AND SET UP A FLOW

set sink0 [new Agent/LossMonitor]
set sink1 [new Agent/LossMonitor]
set sink2 [new Agent/LossMonitor]
set sink3 [new Agent/LossMonitor]
set sink4 [new Agent/LossMonitor]
set sink5 [new Agent/LossMonitor]
$ns attach-agent $n(0) $sink0
$ns attach-agent $n(1) $sink1
$ns attach-agent $n(2) $sink2
$ns attach-agent $n(3) $sink3
$ns attach-agent $n(4) $sink4
$ns attach-agent $n(5) $sink5

#$ns attach-agent $sink2 $sink3
set tcp0 [new Agent/TCP]
$ns attach-agent $n(0) $tcp0
set tcp1 [new Agent/TCP]
$ns attach-agent $n(1) $tcp1
set tcp2 [new Agent/TCP]
$ns attach-agent $n(2) $tcp2
set tcp3 [new Agent/TCP]
$ns attach-agent $n(3) $tcp3
set tcp4 [new Agent/TCP]
$ns attach-agent $n(4) $tcp4
set tcp5 [new Agent/TCP]
$ns attach-agent $n(5) $tcp5


proc attach-CBR-traffic { node sink size interval } {
#Get an instance of the simulator
set ns [Simulator instance]
#Create a CBR agent and attach it to the node
set cbr [new Agent/CBR]
$ns attach-agent $node $cbr
$cbr set packetSize_ $size
$cbr set interval_ $interval

#Attach CBR source to sink;
$ns connect $cbr $sink
return $cbr
}

set cbr0 [attach-CBR-traffic $n(0) $sink5 1000 .030]
$ns at 0.5 "$cbr0 start"
$ns at 5.5 "finish"
puts "Start of simulation.."
$ns run


All times are GMT -5. The time now is 09:40 AM.