170 likes | 322 Views
Recursively Partitioned Static IP Router Table. Authors : Wencheng Lu, Sartaj Sahni Publisher : ISCC 2007 Present : Kuang-Ying Ho 何冠穎 Date : 2007/11/06(Tue.). Department of Computer Science and Information Engineering National Cheng Kung University, Taiwan R.O.C. Introduction.
E N D
Recursively Partitioned Static IP Router Table Authors:Wencheng Lu, Sartaj Sahni Publisher:ISCC 2007 Present:Kuang-Ying Ho 何冠穎 Date:2007/11/06(Tue.) Department of Computer Science and Information Engineering National Cheng Kung University, Taiwan R.O.C.
Introduction • A method–recursive partitioning–to partition a static IP router table so that when each partition is represented using a base structure such as a multibit trie (MST) or a hybrid shape shifting trie (HSST). • Reduce both Total memory required for router table. Number of memory access. • Compare with popular front-end table methed.
*Shape Shifting Trie K: node size in STT
Recursive Partitioning First-level partitions of Tpartition L(R)the auxiliary partition s : stride, 1 ≤ s ≤ T.height+1 R R s : 3 s : 2
Data structure Q(N) : bit stringIndex of ST(N)
Hash table - Entry types R s : 2
Lookup • For first level s: stride ht:address of first hash table entry h : perfect hash function d : destination IP q u
Dynamic Programming Recurrence • B(N, l, r) be the minimum memory required to represent levels 0 through l of the subtree of T rooted at N by a base structure such as MBT or HSST take no more than r memory accesses. • H(N, l) be the memory required for a stride l hash table for the paths from node N of T to nodes in Dl(N) • C(N, l, r) be the minimum memory required by a recursively partitioned representation of the subtrie defined by levels 0 through l of ST(N). • r = 4, 5 0 < l ≤ N.height N N.height N l Q Recurrences for B may be obtained from Sahni and Kim [12] for fixed- and variable-stride MBTs and Lu and Sahni [6] for HSSTs.
Optimization A. when auxiliary partitions L(R) are restricted to be resented by base structures, the memory requirement is reduced. B. either a hashtable or a simple array with 2l entries can be use when the partition stride is l.
Implementation • For benchmarking purposes we assumed that the router table will reside on a QDRII SRAM (dual burst), which supports the retrieval of 72 bits of data with a single memory access. We considered two hash-table designs–36 bit and 72 bit.
Implementation for IPv4 • In the 36-bit design for IPv4, we allocated 36 bits to each hash entry with: 8 bits for Q(N), 2 bits for the stride of the next-level partition (5-8), 8 bits for the mask, 17 bits for the pointer. • In the 72-bit design for IPv4, we allocated 72 bits for each hash-table entry with17 bits for Q(N), 5 bits for the stride of the next-level partition (1-17),17 bits for the mask,19 bits for the pointer
Implementation for IPv6 • In the 36-bit design for IPv6, we allocated 36 bits to each hash entry with: 7 bits for Q(N), 2 bits for the stride of the next-level partition (4-7), 7 bits for the mask, 19 bits for the pointer. • In the 72-bit design for IPv6, we allocated 72 bits for each hash-table entry with17 bits for Q(N), 5 bits for the stride of the next-level partition (1-17),17 bits for the mask,19 bits for the pointer