Open Shortest Path First: Examples & Benefits (2024)

Open Shortest Path First: Examples & Benefits (1)

Delve into the fascinating world of computer networks as you explore the critical principle of Open Shortest Path First (OSPF). Understand this essential computer science concept, its application in real-life scenarios, and the myriad benefits it offers. Learn about this vital algorithm and terminology associated with it before probing the pivotal role OSPF plays in IP Network management. By unravelling these concepts, you'll gain a broader understanding of computer science, thereby enhancing your technical proficiency in the field.

Get started

Millions of flashcards designed to help you ace your studies

Sign up for free

+ Add tagImmunologyCell BiologyMoHow does the OSPF algorithm determine the shortest path to other routers?Show Answer+ Add tagImmunologyCell BiologyMoWhat is Open Shortest Path First (OSPF) and its primary function?Show Answer+ Add tagImmunologyCell BiologyMoWhat are some of the advantages of Open Shortest Path First (OSPF)?Show Answer+ Add tagImmunologyCell BiologyMoWhat mechanism does OSPF use to identify the most effective route for data packets?Show Answer+ Add tagImmunologyCell BiologyMoHow does OSPF impact network communication?Show Answer+ Add tagImmunologyCell BiologyMoWhat is route authentication in OSPF and how does it contribute to network security?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the role of OSPF in IP networks?Show Answer+ Add tagImmunologyCell BiologyMoWhat is Open Shortest Path First (OSPF) in networking?Show Answer+ Add tagImmunologyCell BiologyMoHow does the OSPF function with the Dijkstra algorithm?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the role of Open Shortest Path First (OSPF) in routing decisions and load-balancing?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the Open Shortest Path First (OSPF) algorithm?Show Answer
+ Add tagImmunologyCell BiologyMoHow does the OSPF algorithm determine the shortest path to other routers?Show Answer+ Add tagImmunologyCell BiologyMoWhat is Open Shortest Path First (OSPF) and its primary function?Show Answer+ Add tagImmunologyCell BiologyMoWhat are some of the advantages of Open Shortest Path First (OSPF)?Show Answer+ Add tagImmunologyCell BiologyMoWhat mechanism does OSPF use to identify the most effective route for data packets?Show Answer+ Add tagImmunologyCell BiologyMoHow does OSPF impact network communication?Show Answer+ Add tagImmunologyCell BiologyMoWhat is route authentication in OSPF and how does it contribute to network security?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the role of OSPF in IP networks?Show Answer+ Add tagImmunologyCell BiologyMoWhat is Open Shortest Path First (OSPF) in networking?Show Answer+ Add tagImmunologyCell BiologyMoHow does the OSPF function with the Dijkstra algorithm?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the role of Open Shortest Path First (OSPF) in routing decisions and load-balancing?Show Answer+ Add tagImmunologyCell BiologyMoWhat is the Open Shortest Path First (OSPF) algorithm?Show Answer

Review generated flashcards

Sign up for free

to start learning or create your own AI flashcards

Sign up for free

You have reached the daily AI limit

Start learning or create your own AI flashcards

Contents

Table of contents

    Understanding Open Shortest Path First in Computer Networks

    Open Shortest Path First, or OSPF, is an internet protocol used to distribute routing information within a single Autonomous System, such as a campus area network or a corporate intranet. It is a highly flexible, link-state algorithm, meaning that it relays and calculates the best path between a source and destination.

    What is Open Shortest Path First: An In-depth Analysis

    OSPF is designed to be an Interior Gateway Protocol (IGP), used inside an organization's network. It uses a complex metric to determine the best route for packets, taking into account factors like network delay, bandwidth, and reliability.

    Elementary breakdown of Open Shortest Path First

    OSPF operates on a basis of areas: the network is divided into areas, each of which runs a separate copy of the OSPF algorithm. Among these include:

    • The backbone area: This is the central area of the network. All the other areas connect to this one.
    • Regular areas: These are the sections of the network that connect to the backbone area.
    • Stub areas: A section of the network that doesn't route packets to non-OSPF networks.
    • Totally stubby areas: Like stub areas, but they further restrict the routes that are advertised.

    A closer look at the Open Shortest Path First algorithm

    To understand the workings of the OSPF algorithm, you should take note of the following key steps followed:

    1. Establishing adjacency: The OSPF routers have to discover and recognize each other first.
    2. Exchange of link-state advertisem*nts: The routers share their maps of the network, which encompass the states of their links (connections to other routers).
    3. Building of the Shortest Path First (SPF) tree: A map of the shortest paths to all nodes is developed based on the link-state advertisem*nts.
    4. Assigning of routes: The best paths are ultimately assigned based on the SPF tree.

    Understanding Open Shortest Path First terminology

    Let's explore two crucial terms tied to OSPF:

    Adjacency: This is a relationship between two OSPF routers which denotes that they have connected and are exchanging OSPF information.

    Link-State Advertisem*nt (LSA): LSAs are small packets of routing information that OSPF-enabled routers exchange to learn about each other's networks.

    If you consider two routers, Router A and Router B, located in separate buildings but connected within a corporate network. The adjacency is formed when Router A recognises Router B as a valid OSPF-enabled device. Then, the LSA occurs when Router A sends information to Router B about the networks it is connected to, and vice versa.

    Finally, one key aspect you should grasp about OSPF is the Dijkstra's algorithm. OSPF utilizes this algorithm to calculate the shortest path between the routers. The calculation involves cost, which is essentially the metric OSPF uses to rate each route, lower cost indicating the most favored path.

    function Dijkstra(Graph, source): create vertex set Q for each vertex v in Graph: distance[v] := INFINITY previous[v] := UNDEFINED add v to Q distance[source] := 0 while Q is not empty: u := vertex in Q with min distance[u] remove u from Q for each neighbor v of u: alt := distance[u] + length(u, v) if alt < distance[v]: distance[v] := alt previous[v] := u return distance[], previous[]

    The code above represents Dijkstra's algorithm. It represents the shortest path between routers by considering the cost associated with each path, and by opting for the path with the least cost.

    Delving into an Open Shortest Path First Example

    In the realm of Computer Science and networking, it is often best to comprehend complex topics such as Open Shortest Path First (OSPF) by breaking them down to a practical, real-life example. Analysing such can provide a deeper understanding of the intricacies involved in the OSPF mechanisms.

    Applying Open Shortest Path First in Real-life Scenarios

    Consider a large corporation with numerous buildings across a city. Each building has its own Local Area Network (LAN) containing multiple servers, computers, and devices that need to communicate with similar equipment in the other buildings. The buildings are connected with a Wide Area Network (WAN), diverge into zones or 'areas', and these areas need to communicate - where OSPF plays its role. OSPF facilitates resilient and efficient communication across such vast networks. Each building has one or more routers, running OSPF, which act as the gateway for all network traffic leaving and entering the building. With OSPF, the routers can work together to determine the fastest and most reliable path for network packets between any devices on the network.Once OSPF is up and running across the all of the routers and these devices have established adjacencies, the communication begins:

    • Data packets destined for another device within the same building (and therefore the same area) can be sent directly without the need for more complex routing.
    • If the destination device is in a different building, the packets need to traverse the network backbone - the main pathway for inter-area traffic. The packets are passed from one router to another until they reach the required building.
    • Each router along the pathway makes an independent decision about the best way to forward the packets. It uses the link-state database – a detailed map of the network – to make this decision.

    Example of Open Shortest Path First in Action

    Let's look at an example of OSPF in action. Building A's server needs to send a large file to a server in building B. The local router in building A will look at its link-state database and identify multiple potential paths. For instance:

    Path 1Through building C, then to building B
    Path 2Direct to building B
    Path 3Through building D, then to building B

    Each path will have a cost calculated using a complex metric, taking into account factors like network delay, bandwidth, and congestion. For instance, the cost from source node (server in Building A) to destination node (server in Building B) can be represented by the formula:\[C = W_1 \cdot D + W_2 \cdot B + W_3 \cdot T\]Here, \(C\) is cost, \(D\) is the delay factor from source to destination, \(B\) is the available bandwidth, and \(T\) is a measure of the traffic congestion between the nodes. The weights \(W_1 , W_2 , W_3 \, \) are decided by the network admins.The router will compute the cost for each path and select the one with the lowest, thus adhering to the ‘shortest path first' principle.For instance, path 1 might have a high cost because building C is currently experiencing high levels of network traffic. Path 3 might also have a high cost because of a downgrade in the physical network link to building D. As a result, path 2 might be selected as the best option since it has the lowest cost. The data file is then segmented into packets, which are forwarded along the chosen path.

    if(path1Cost > path2Cost && path1Cost > path3Cost){ selectPath = Path1;} else if(path2Cost > path1Cost && path2Cost > path3Cost) { selectPath = Path2;} else { selectPath = Path3;}forwardPackets(selectPath);

    The framework above broadly represents how the OSPF algorithm would choose the path with the lowest cost and forward the packets accordingly.Understanding this practical example can significantly foster your ability to visualise complex networking concepts, ultimately aiding you in applying such knowledge practically and efficiently in any relevant scenario.

    Probing the Advantages of Open Shortest Path First

    Open Shortest Path First (OSPF) is among the more prevalent and respected algorithms for computer networking. The notable benefits OSPF offer include its flexibility, scalability, and the advantage of it being a link-state protocol.

    Benefits of Utilising Open Shortest Path First

    The power of OSPF lies in its inherent features and capabilities. Unlike some other protocols, OSPF offers a host of benefits that make it attractive for many complex networks:

    • Flexibility: With OSPF, you can structure your network into areas. These areas allow easy management of routing information. Moreover, changes in topology within one area don't affect the routing tables of routers outside this area, reducing unnecessary network traffic.
    • Scalability: OSPF's design supports large, hierarchical networks. It works by breaking up a large network into smaller, manageable pieces. This allows (OSPF) to scale well, accommodating large, intricate networks.
    • Efficiency: OSPF efficiently manages its link-state database, maintaining current information about the network's state. This leads to faster, more accurate route determination.
    • Link-State Protocol: OSPF is a link-state protocol meaning each router maintains a database of the network's topology. This allows routers to calculate optimal packet routing paths.
    • Fast Convergence: OSPF networks recognise topology changes quickly and converge on new loop-free routing structures within seconds. This means less disruption in your network, ensuring seamless performance.

    Another notable feature is the support for Equal-Cost Multi-Path (ECMP) routing. In this, if there are multiple paths to a destination with equal cost, OSPF allows packets to be sent over all of them, increasing throughput and providing automatic load balancing.

    Advantages that set Open Shortest Path First apart

    While these broader benefits are striking, the real advantages of OSPF often lie in the details. Key features that set OSPF apart include:

    VLSM Support: OSPF supports Variable Length Subnet Masking (VLSM). With VLSM, your network can use more than one subnet mask, allowing for more precise use of IP address space.

    The protocol also provides advanced security features. Notably, the implementation of cryptographic authentication secures the OSPF information, ensuring it hasn't been tampered with in transit.Furthermore, OSPF networks portray a form of resilience in the form of fault tolerance. This occurs through automatic control of link failures. If a link in the network fails, OSPF can automatically re-route traffic around the failed link to a backup path. An important advantage with OSPF is that it uses a cost metric for path selection. This cost is often associated with the use of administrative weights or intrinsic physical parameters like latency or bandwidth. Let \(C_i\) be the cost of path \(i\) and \(B_i\) be the bandwidth on this path, OSPF can determine the cost as:\[C_i = \frac{1}{B_i}\]Thus, a path with high bandwidth would have a lower cost and be more preferred.Finally, OSPF has robust multicast and non-broadcast support, ensuring that the protocol can work in various different types of networks.

    function DetectLinkFailure() { if (currentLink == FAIL) { currentLink = BackupLink; } routePackets(currentLink);}

    The code snippet above is a simplistic representation of how OSPF can handle a link failure by switching to a backup link to maintain network performance.Delving into these advantages, it is clear why OSPF is a widely adopted networking protocol. It not only supports complex and differing networks but also provides seamless, efficient communication. This ensures that your network runs seamlessly, offering optimal communication and data transfer rates.

    Open Shortest Path First in IP Networks

    In the field of computer networking, the Open Shortest Path First (OSPF) protocol holds a unique place, particularly in association with Internet Protocol (IP) networks. Its specific set of benefits offers optimised and reliable solutions to handle the intricacies of complex IP networks, contributing to efficient communication and data transfer.

    Integrating Open Shortest Path First in IP Networks

    When it comes to networking, IP is unquestionably an essential element for communication. In essence, IP networks imply a communication network that uses Internet Protocol to send and receive messages between one or more computers. For IP networks, the role of efficient routing becomes paramount and OSPF appears as a star player.As an advanced interior gateway protocol (IGP) developed for IP networks, OSPF has been designed to supersede older IGPs like RIP (Routing Information Protocol). OSPF performs routing decisions based on link states, considering the beneficial information about the network's topology stored in a link-state database. Autonomous Systems or networks usually integrate OSPF as their IGP. This is advantageous as OSPF doesn't require any additional routing protocol to support intra-domain routing. Furthermore, OSPF can swiftly reconfigure itself when the network topology changes, minimising communication interruptions.Consider the following OSPF features and their roles in IP networks:

    • Accurate Routing Information: OSPF routers can make precise and informed decisions as they maintain a comprehensive image of the network topology.
    • Scalability: OSPF's ability to separate a large network into smaller areas enhances its scalability, accommodating large, intricate IP networks.
    • Swift Convergence: Fast adaptation to network changes make OSPF a dependable choice for dynamic and complex IP networks.

    Without OSPF, IP networks could experience complications related to routing loop formation, inefficiencies in communication and data transfer, and problems with network scalability.

    Role of Open Shortest Path First in managing IP Networks

    OSPF plays a significant role in navigating the challenges related to intricate IP Networks. It employs Dijkstra's algorithm, enabling it to calculate the shortest path between nodes. The score for each path or 'cost' is determined by summation of link costs. This can be represented as:\[C = \sum_{{i=1}}^n C_i\]Here, \(C\) is the total cost, \(i\) represents each pathway considered, and \(C_i\) is the cost involved in each link in the pathway. When considering numerous paths, the pathway with the lowest cost is selected by OSPF.OSPF also recognises the changes in network topology swiftly, thereby re-adjusts its routing table accordingly. This ability to converge quickly is a cornerstone characteristic when it comes to large, complex IP networks, where even small issues can quickly become catastrophic. The code below represents a simplified version of this process:

    function networkTopologyChange() { recalculateRoutingTable(); if (currentPathCost > newPathCost) { currentPath = newPath; rerouteTraffic(currentPath); }}

    This seamless management of traffic flow is made possible by keeping an updated version of all available pathways in the routing table. The routing table is automatically updated, allowing OSPF to ensure data is transmitted with the least possible interruption and delay.Moreover, OSPF also provides different types of Authentication: Null (where no authentication information is included in the OSPF header), simple password (where plaintext passwords are included), and cryptographic (where a cryptographic authenticator is attached). This is crucial in protecting the OSPF data against any tampering.When examining the role of OSPF in managing IP Networks, it is clear that its real power lies in its link-state database and the complex, yet efficient, route determination it provides. It is capable of handling a high volume of nodes, making it an invaluable tool for complex and diverse networks. Especially in large-scale operations, OSPF paves the way for smooth, efficient network operations, earning it a top spot in the field of IP networking.

    Open Shortest Path First - Key takeaways

    • Open Shortest Path First (OSPF) is a type of internal computer network routing protocol used globally, designed to distribute routing information among the routers of an autonomous system.
    • The Open Shortest Path First algorithm uses Dijkstra's algorithm to calculate the shortest path between the routers. The calculation involves cost, with a lower cost indicating the most favoured path.
    • Adjacency is a relationship between two OSPF routers indicating that they are connected and are exchanging OSPF information. Link-State Advertisem*nts (LSA) are small packets of routing information exchanged by OSPF-enabled routers to learn about each other's networks.
    • Open Shortest Path First protocol provides several advantages including flexibility, scalability, efficiency, and quick convergence in your network. It also supports Equal-Cost Multi-Path (ECMP) routing, enabling packets to be sent over all paths with equal cost.
    • OSPF plays a significant role in managing IP Networks, providing accurate routing information, as well as the ability to swiftly adapt to network changes. It uses Dijkstra's algorithm to calculate the shortest path between nodes in the network, summarising the cost involved in each link to determine path selection.

    Flashcards in Open Shortest Path First36

    Start learning

    How does the OSPF algorithm determine the shortest path to other routers?OSPF begins with the source router, sets its cost as zero, and all others as infinity. It then selects the neighbouring router with the least cost, proceeding to calculate costs to the other routers through this path, ultimately resulting in a map of shortest paths.
    What is Open Shortest Path First (OSPF) and its primary function?Open Shortest Path First (OSPF) is the outcome of an Internet Engineering Task Force (IETF) project which determines the most efficient path for data packets within an IP network.
    What are some of the advantages of Open Shortest Path First (OSPF)?OSPF offers advantages like rapid convergence, multipath routing, hierarchical network design, scalability, detailed knowledge of network state, load balancing, route authentication and the ability to handle large networks.
    What mechanism does OSPF use to identify the most effective route for data packets?OSPF uses a metric called 'cost', calculated based on parameters like bandwidth and delay, to identify the shortest path.
    How does OSPF impact network communication?OSPF ensures efficient and effective data packet routing, creates the Shortest Path First Tree using the Dijkstra algorithm, and quickly adjusts routing tables in response to topology changes.
    What is route authentication in OSPF and how does it contribute to network security?Route authentication in OSPF confirms the authenticity of routing updates from other routers, providing an additional security layer. OSPF supports both clear-text and MD5 authentication.

    Open Shortest Path First: Examples & Benefits (29)Open Shortest Path First: Examples & Benefits (30)

    Learn with 36 Open Shortest Path First flashcards in the free StudySmarter app

    We have 14,000 flashcards about Dynamic Landscapes.

    Sign up with Email

    Already have an account?Log in

    Frequently Asked Questions about Open Shortest Path First

    What is the main purpose of Open Shortest Path First in computer networking?

    The main purpose of Open Shortest Path First (OSPF) in computer networking is to determine the shortest path for data packets to traverse through an Internet Protocol (IP) network efficiently. It's a routing protocol that helps avoid traffic jams in large networks.

    What are the benefits of using Open Shortest Path First in network routing?

    Open Shortest Path First (OSPF) offers faster route computation, scalability, and supports load balancing. It provides built-in security, and more efficient route updates leading to less network traffic. It better optimises internet protocol than alternative routing methods like Routing Information Protocol (RIP).

    How does Open Shortest Path First operate within a computer network?

    Open Shortest Path First (OSPF) operates by using the Dijkstra algorithm to find the shortest path for data packets within a network. All routers in the network share information, creating a complete topographic map, which aids in determining the most direct routes.

    Is Open Shortest Path First a better choice for large scale network routing over other protocols?

    Open Shortest Path First (OSPF) is often a better choice for large scale network routing because it uses a link-state routing algorithm, which can handle larger and more complex networks. However, the choice between OSPF and other protocols depends on the specific requirements of the network.

    How can one configure Open Shortest Path First on a network router?

    Configuring Open Shortest Path First (OSPF) on a network router involves entering the router's setup, typically through a command line interface. The user then enables OSPF using the "router ospf" command, designates the network, and sets the router's ID and OSPF area. Details might vary depending on the specific router model.

    Test your knowledge with multiple choice flashcards

    Open Shortest Path First: Examples & Benefits (31)

    YOUR SCORE

    Your score

    Join the StudySmarter App and learn efficiently with millions of flashcards and more!

    Learn with 36 Open Shortest Path First flashcards in the free StudySmarter app

    Already have an account? Log in

    Open in our app

    Discover learning materials with the free StudySmarter app

    Sign up for free

    Open Shortest Path First: Examples & Benefits (32)

    Open Shortest Path First: Examples & Benefits (33)

    About StudySmarter

    StudySmarter is a globally recognized educational technology company, offering a holistic learning platform designed for students of all ages and educational levels. Our platform provides learning support for a wide range of subjects, including STEM, Social Sciences, and Languages and also helps students to successfully master various tests and exams worldwide, such as GCSE, A Level, SAT, ACT, Abitur, and more. We offer an extensive library of learning materials, including interactive flashcards, comprehensive textbook solutions, and detailed explanations. The cutting-edge technology and tools we provide help students create their own learning materials. StudySmarter’s content is not only expert-verified but also regularly updated to ensure accuracy and relevance.

    Learn more

    Open Shortest Path First: Examples & Benefits (34)

    StudySmarter Editorial Team

    Team Computer Science Teachers

    • 15 minutes reading time

    • Checked by StudySmarter Editorial Team

    Save ExplanationSave Explanation

    Study anywhere. Anytime.Across all devices.

    Sign-up for free

    Explore our app and discover over 50 million learning materials for free.

    Sign up for free

    94% of StudySmarter users achieve better grades with our free platform.

    Download now!

    Create a free account to save this explanation.

    Save explanations to your personalised space and access them anytime, anywhere!

    Sign up with EmailSign up with Apple

    By signing up, you agree to the Terms and Conditionsand thePrivacy Policy of StudySmarter.

    Already have an account?Log in

    Sign up to highlight and take notes. It’s 100% free.

    Get Started Free

    Join over 22 million students in learning with our StudySmarter App

    The first learning app that truly has everything you need to ace your exams in one place

    • Flashcards & Quizzes
    • AI Study Assistant
    • Study Planner
    • Mock-Exams
    • Smart Note-Taking
    Open Shortest Path First: Examples & Benefits (35)
    Sign up with Email

    Already have an account? Log in

    Open Shortest Path First: Examples & Benefits (2024)
    Top Articles
    What Makes a Great Virtual Assistant? Qualities to Look Out For — Smart Virtual Assistant
    About encrypted backups on your iPhone, iPad or iPod touch – Apple Support (MY)
    Libiyi Sawsharpener
    Form V/Legends
    Atvs For Sale By Owner Craigslist
    Z-Track Injection | Definition and Patient Education
    Coffman Memorial Union | U of M Bookstores
    Nc Maxpreps
    30% OFF Jellycat Promo Code - September 2024 (*NEW*)
    Nation Hearing Near Me
    Rainfall Map Oklahoma
    Chastity Brainwash
    Sams Gas Price Fairview Heights Il
    Hartford Healthcare Employee Tools
    Theycallmemissblue
    WWE-Heldin Nikki A.S.H. verzückt Fans und Kollegen
    Craigslist Blackshear Ga
    Craighead County Sheriff's Department
    Spoilers: Impact 1000 Taping Results For 9/14/2023 - PWMania - Wrestling News
    Honda cb750 cbx z1 Kawasaki kz900 h2 kz 900 Harley Davidson BMW Indian - wanted - by dealer - sale - craigslist
    Missed Connections Dayton Ohio
    Unity - Manual: Scene view navigation
    Full Standard Operating Guideline Manual | Springfield, MO
    The EyeDoctors Optometrists, 1835 NW Topeka Blvd, Topeka, KS 66608, US - MapQuest
    Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
    University Of Michigan Paging System
    Student Portal Stvt
    Creed 3 Showtimes Near Island 16 Cinema De Lux
    8002905511
    1964 Impala For Sale Craigslist
    Rays Salary Cap
    J&R Cycle Villa Park
    Otis Offender Michigan
    Tmj4 Weather Milwaukee
    Shaman's Path Puzzle
    Vitals, jeden Tag besser | Vitals Nahrungsergänzungsmittel
    That1Iggirl Mega
    Pensacola Cars Craigslist
    Nearest Ups Office To Me
    Final Jeopardy July 25 2023
    Walmart Pharmacy Hours: What Time Does The Pharmacy Open and Close?
    Frigidaire Fdsh450Laf Installation Manual
    Thotsbook Com
    Is Ameriprise A Pyramid Scheme
    56X40X25Cm
    20 Mr. Miyagi Inspirational Quotes For Wisdom
    RubberDucks Front Office
    Rovert Wrestling
    Santa Ana Immigration Court Webex
    2487872771
    Lagrone Funeral Chapel & Crematory Obituaries
    Gainswave Review Forum
    Latest Posts
    Article information

    Author: Lilliana Bartoletti

    Last Updated:

    Views: 6391

    Rating: 4.2 / 5 (53 voted)

    Reviews: 92% of readers found this page helpful

    Author information

    Name: Lilliana Bartoletti

    Birthday: 1999-11-18

    Address: 58866 Tricia Spurs, North Melvinberg, HI 91346-3774

    Phone: +50616620367928

    Job: Real-Estate Liaison

    Hobby: Graffiti, Astronomy, Handball, Magic, Origami, Fashion, Foreign language learning

    Introduction: My name is Lilliana Bartoletti, I am a adventurous, pleasant, shiny, beautiful, handsome, zealous, tasty person who loves writing and wants to share my knowledge and understanding with you.